2012-08-28 85 views
1

我需要得到如果一個URL在谷歌加成功共享。請注意,如果用戶點擊共享按鈕,然後關閉氣泡,這還不夠。我需要確定鏈接是共享的,以便在我的應用程序中執行特定的邏輯。獲取鏈接成功與谷歌分享按鈕共享按鈕

是否有這樣做?任何提交的onend interaction函數的「url」參數都需要查找?

回答

1

下面是一個演示如何使用onendinteraction與Google+分享按鈕的示例。

<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script> 
<script type="text/javascript"> 
     function startInteraction(params) {   
      window.console.log('end interaction'); 
     }; 

     function endInteraction(params) { 
      window.console.log('end interaction'); 
     }; 
</script> 

<g:plus action="share" href="http://example.com" onstartinteraction="startInteraction" onendinteraction="endInteraction"></g:plus>