Skip to content

Instantly share code, notes, and snippets.

@oshliaer
Last active August 29, 2015 14:21
Show Gist options
  • Save oshliaer/04dd0c721ab678096000 to your computer and use it in GitHub Desktop.
Save oshliaer/04dd0c721ab678096000 to your computer and use it in GitHub Desktop.
Set permissions for a file #gapi #snippet
var setAccess = function setAccessF() {
gapi.client.request({
path : '/drive/v2/files/fileID/permissions',
method : 'post',
body : {
'value' : 'anyone',
'type' : 'anyone',
'role' : 'reader'
}
}).then(opt_onFulfilled, opt_onRejected);
}
function opt_onRejected(e) {
console.log(e)
}
function opt_onFulfilled(e) {
console.log(e)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment