我使用Google+ Signin开发了一个网络应用程序。用户点击使用Google+登录后,它会授权该应用并注册该用户。在此过程之后,我想从我的应用程序中自动分享google plus wall中的一些信息。为此,我浏览了Google plus API“https://developers.google.com/+/”,并启用与登录相关的api,获取用户信息和写入权限。我正在尝试使用Google的API发布当前登录用户的流/墙/其他内容。我的网站使用Facebook和Twitter API在当前登录用户的墙上自动发布通知,但无法使用Google墙发布。我想要Facebook和Twitter API,自动发布功能和API。 请帮我解决这个问题。 为了便于审核,我将在此处发送示例代码段:
/*
<script type="text/javascript">
function googleAPIOnLoad() {
console.log("Google plus js loaded... calling client.load...");
gapi.client.load('plus','v1', function(e){
console.log("client loaded...");
console.log(e);
});
}
function signIn() {
console.log("signing in...");
gapi.auth.authorize({
client_id: "XXXXXXXXXXX",
immediate: false,
response_type: "token",
scope: ["https://www.googleapis.com/auth/plus.login https://www.googleapis.com/auth/plus.stream.write"],
requestvisibleactions: "https://schemas.google.com/AddActivity"
}, function(e) {
// callback
console.log("done!", e);
gapi.client.request({
path: "plus/v1/people/me/moments/vault",
method: "POST",
body: JSON.stringify({
type: "http://schemas.google.com/AddActivity",
target: {
type: "http://schema.org/Thing",
name: "Test Name",
description: "Test Description",
image: "http://test.test.com/Deal/Dealphoto/Thumbnail/0160475582922191382013.png"
}
})
}).execute(function(e) {
console.log("did it.", e);
});
});
}
</script>
*/
我将非常感谢你。
谢谢, 拉利特
答案 0 :(得分:1)
基本上,您无法自动发布到用户的Google+信息流。您可以使用share API与用户有意发布,也可以使用app activities自动创建在用户流中不可见的帖子。
您可以为完整的写入API方法加注明星open feature request。
Domains API中有一个写入API,但仅适用于Google Apps用户,并且只能在该公司中发布私人内容。