1

我需要获取 url 是否在 google plus 中成功共享。请注意,如果用户单击共享按钮然后关闭气泡是不够的。我需要确定共享链接以在我的应用程序中执行特定逻辑。

有什么理由这样做吗?onend interaction我需要查找的函数的“url”参数中是否有任何文件?

4

1 回答 1

1

下面是一个示例,展示了如何使用onendinteractionGoogle+ 分享按钮。

<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>
于 2012-08-29T23:14:40.620 回答