Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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["desktop_folder_id"], function(err, folder) {
        console.log("You have", folder["children"].length,
                    "items on your desktop");
    });
});