使用此处的示例:https://developers.google.com/+/api/latest/moments/insert
和everyauth处理oauth登录:
(添加了.withAuth())
或者使用我自己更简单的示例我收到“无效值”状态代码:400错误。
{"domain":"global","reason":"invalid","message":"Invalid Value"}
我使用everyauth来处理oauth和登录。我的初始化代码如下:
everyauth.google
.appId(conf.googlehybrid.clientId)
.appSecret(conf.googlehybrid.clientSecret)
.scope('https://www.googleapis.com/auth/plus.login\
https://www.googleapis.com/auth/plus.moments.write')
.findOrCreateUser( function (sess, accessToken, extra, googleUser) {
googleUser.refreshToken = extra.refresh_token;
googleUser.expiresIn = extra.expires_in;
return usersByGoogleId[googleUser.id] || (usersByGoogleId[googleUser.id] = addUser('google', googleUser));
})
.redirectPath('/');
上面的代码生成以下网址:
注意:我在url中使用“request-visible-actions”参数。另请注意,moment类型匹配下面代码中指定的类型以及该类型时刻的schema.org规范。
范围似乎正确处理。登录序列提示我批准
This app would like to:
-Know your basic profile info and list of people in your circles. (Edit list)
-Make your creative activity available via Google, visible to:...
我的代码:
var moment = {
"type":"http://schemas.google.com/CreateActivity",
"target": {
"id": "target-id-2",
"type": "http://schema.org/CreativeWork",
"name": "Test moment",
"description": "This is a sample moment",
"text": "samplpe g+ posting!"
}
}
gapi.client.plus.moments.insert(
{
'userId': 'me',
'collection': 'vault',
'resource': moment
})
.withAuthClient(authObject)
.execute(callback);
}
我没有遇到任何与Google+互动或向Google服务发出授权请求的问题,但似乎无法插入Google+时刻。有没有人能够使用google-api-nodejs-client库插入Google+时刻? 如果是这样,请告诉我我做错了什么。
答案 0 :(得分:1)
我遇到了与youtube api类似的问题,似乎我们应该从节点库调用api与api文档中指定的不一样。
具体而不是这样做:
gapi.client.plus.moments.insert(
{ 'userId' : 'me',
'collection' : 'vault',
'resource' : payload
}
).execute(function(result){
console.log(result);
});
您必须拨打以下电话:
gapi.client.plus.moments.insert(
{ 'userId' : 'me', 'collection' : 'vault'},
payload
).execute(function(result){
console.log(result);
});
请求的参数在第一个参数中传递,请求体在函数的第二个参数中传递。
答案 1 :(得分:0)
我已经能够使用Python中的Google API,使用相同的时刻对象和OAuth URL来使用此示例。
似乎google-api-nodejs-client如何打包我的请求以插入片刻有一些错误。
我没有时间进一步研究,所以我会坚持使用Python。
我仍然更喜欢使用Node。 如果有人提出错误修复或解决方案,使其在Node api中工作,请告诉我。