2

我使用 Google Interactive 帖子让登录用户邀请外部用户访问该站点。只有当用户选择发布到他在 google plus 上的一个连接时,我才想在我的网站上注册邀请。

有没有办法处理 post 事件并知道用户是否已发布并相应地调用处理程序?

这就是我今天如何称呼它。

var options = {
    contenturl: myurl,
    clientid: googleappid,
    cookiepolicy: "single_host_origin",
    prefilltext: text,
    calltoactionlabel: "START",
    calltoactionurl: somethingstring,
    recipients: connectionid,
    onClick: doSomethingOnClick(),
};  
gapi.interactivepost.render('submit', options);

就像 onClick 一样,是否支持诸如 onPost 之类的事件?

4

1 回答 1

0

onshare: function(response){
        console.log('callback done');
      // These are the objects returned by the platform
      // When the sharing starts...
      // Object {status: "started"}
      // When sharing ends...
      // Object {action: "shared", post_id: "xxx", status: "completed"} 
    }

它没有记录,但我刚刚测试过它并且它有效。

于 2015-06-12T06:17:27.860 回答