我正在尝试在我的应用程序中嵌入google plus帖子。 我在标题
中加载了 platform.js 文件<script>
window.___gcfg = {
lang: 'en-US',
parsetags: 'onload'
};
</script>
<script src="https://apis.google.com/js/platform.js" async defer>
</script>
<script>
function renderWidget() {
gapi.post.render("widget-div", {'href' : 'https://plus.google.com/109813896768294978296/posts/hdbPtrsqMXQ'} );
}
</script>
在html页面
<a href="#" onClick="renderWidget();">Render the embedded post</a>
<div id="widget-div"></div>
当我点击链接时,它什么都没显示。还有什么要补充的。以下是我跟随https://developers.google.com/+/web/embedded-post
的参考答案 0 :(得分:1)
您可能直接在浏览器中打开HTML
文件,这在某些浏览器中可能会出现问题(例如在Google Chrome中。您可以验证问题here)。
尝试使用本地服务器(可能是XAMPP)运行它,以便URL
看起来类似于http://localhost/yourpath/test.html
希望这会有所帮助!!