Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 419 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 419 Bytes

Quip API node.js Client

The official Quip API node.js client library.

var client = new quip.Client({accessToken: "..."});
client.getAuthenticatedUser(function(err, user) {
    client.getFolder(user["starred_folder_id"], function(err, folder) {
        console.log("You have", folder["children"].length,
                    "items in your starred folder");
    });
});