我需要获取 url 是否在 google plus 中成功共享。请注意,如果用户单击共享按钮然后关闭气泡是不够的。我需要确定共享链接以在我的应用程序中执行特定逻辑。
有什么理由这样做吗?onend interaction
我需要查找的函数的“url”参数中是否有任何文件?
我需要获取 url 是否在 google plus 中成功共享。请注意,如果用户单击共享按钮然后关闭气泡是不够的。我需要确定共享链接以在我的应用程序中执行特定逻辑。
有什么理由这样做吗?onend interaction
我需要查找的函数的“url”参数中是否有任何文件?
下面是一个示例,展示了如何使用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>