Skip to content

Instantly share code, notes, and snippets.

@oshliaer
Created May 19, 2015 18:40
Show Gist options
  • Save oshliaer/06ba9f66cace07875cdf to your computer and use it in GitHub Desktop.
Save oshliaer/06ba9f66cace07875cdf to your computer and use it in GitHub Desktop.
Lists all labels in the user's mailbox #gapi #snippet #gmail
function getListLabels() {
gapi.client.request({
path : '/gmail/v1/users/me/labels',
method : 'get'
}).then(opt_onFulfilled, opt_onRejected);
}
function opt_onRejected(e) {
console.log(e);
}
function opt_onFulfilled(e) {
console.log(e);
}
@oshliaer
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment