2016-11-09 56 views
0

我想在我的應用程序嵌入谷歌加帖。 我在頭無法嵌入谷歌加帖

<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> 

加載platform.js文件在HTML頁面

<a href="#" onClick="renderWidget();">Render the embedded post</a> 
<div id="widget-div"></div> 

當我點擊了鏈接,這說明不了什麼。有什麼需要補充的嗎?以下是我參考的參考文獻https://developers.google.com/+/web/embedded-post

+0

它在這[jsfiddle](https://jsfiddle.net/rmvv67wy/)中正常工作。 – abraham

回答

1

您可能直接在瀏覽器中打開HTML文件,這可能在某些瀏覽器中出現問題(即在Google Chrome中,您可以驗證問題here)。

嘗試使用本地服務器上運行它(XAMPP也許),所以URL將類似於http://localhost/yourpath/test.html

希望這有助於!