Skip to content

Instantly share code, notes, and snippets.

@adewale
Last active December 17, 2015 06:18
Show Gist options
  • Save adewale/5563914 to your computer and use it in GitHub Desktop.
Save adewale/5563914 to your computer and use it in GitHub Desktop.
var moment = {
'type' : 'http://schemas.google.com/AddActivity',
'target' : {
'url' : 'https://developers.google.com/+/web/snippet/examples/widget'
}
};
var request = gapi.client.request({
'path' : 'plus/v1/people/me/moments/vault',
'method' : 'POST',
'body' : JSON.stringify(moment)
});
request.execute(function(result) {
console.log(result);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment