我正在尝试使用cordova中的标准代码嵌入twitter小部件,但不知何故,它只创建链接而不是小部件

我正在尝试使用标准代码将小部件嵌入到我的phonegap / cordova应用程序中:

<a class="twitter-timeline" href="https://twitter.com/Elevraadet_OG" data-widget-id="xxxxxxxxxxxxxxxxxx" data-chrome="noheader nofooter transparent noscrollbar" data-tweet-limit="16">Tweets af @Elevraadet_OG</a>
<script>
    !function(d,s,id){
        var js,
            fjs=d.getElementsByTagName(s)[0],
            p=/^http:/.test(d.location)?'http':'https';
        if(!d.getElementById(id))
        {
            js=d.createElement(s);
            js.id=id;
            js.src=p+"://platform.twitter.com/widgets.js";
            fjs.parentNode.insertBefore(js,fjs);
        }
     }(document,"script","twitter-wjs");
</script>

这怎么只会创建Tweets af @Elevraadet_OG链接而不是小部件,为什么这不起作用?

最佳答案 到目前为止,我发现有一个域名问题与cordova twitter feed.这里有一个长期的讨论
Embedded Timelines in a PhoneGap application

该链接中建议的解决方案很少.你可以尝试一下.使用此插件Twitter Timeline in PhoneGap application可以使用inAppBrowser

点赞