2

Google インタラクティブ投稿を使用して、ログイン ユーザーが外部ユーザーをサイトに招待できるようにしています。ユーザーが Google プラスの接続の 1 つに投稿することを選択した場合にのみ、自分のサイトに招待状を登録したいと思います。

投稿イベントを処理し、ユーザーが投稿したかどうかを知り、それに応じてハンドラーを呼び出す方法はありますか?

今日はこう呼んでいます。

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 に答える