Google+ API を使用しています。ここで説明されているように、Javascript を使用して「インタラクティブ投稿」ボタンをレンダリングできます: https://developers.google.com/+/web/share/interactive#rendering_the_button_with_javascript
したがって、私のコードは次のようになります。
var options = {
contenturl: myurl,
clientid: myclientid,
cookiepolicy: 'single_host_origin',
prefilltext: sometext,
recipients: somerecipients,
calltoactionlabel: 'View',
calltoactionurl: myurl
};
gapi.interactivepost.render('gplus-share-trigger', options);
しかし、レンダリングが終了したときにボタンを自動的にトリガーしたいのですが、それを検出する方法はありますか? 次のような醜いことはしたくありません。
setTimeout(function(){ $('#gplus-share-trigger').click(); },500);
ありがとう