Google plus Google plus共享未显示在个人资料流中

Google plus Google plus共享未显示在个人资料流中,google-plus,Google Plus,奇怪的是,在我自己的测试站点()中,使用相同的代码,google共享在测试站点上工作,而在临时站点上,共享的帖子在共享后不存在于google plus流中 我使用plus.google.com/share?url={url}(带有https)格式从我的站点共享url <a href="https://plus.google.com/share?url={{CURRENT_URL}}" class="social-share" title="Share on Goog

奇怪的是,在我自己的测试站点()中,使用相同的代码,google共享在测试站点上工作,而在临时站点上,共享的帖子在共享后不存在于google plus流中

我使用plus.google.com/share?url={url}(带有https)格式从我的站点共享url

            <a href="https://plus.google.com/share?url={{CURRENT_URL}}" class="social-share" title="Share on Google+">
                <span class="fa fa-google-plus-official"></span>
                <span class="like-text">Google+</span>
            </a>
<script type="text/javascript">
    $.fn.sharePopup = function (e, width, height) {
        // Prevent default anchor event
        e.preventDefault();
        var left = (screen.width / 2) - (width / 2),
          top = (screen.height / 2) - (height / 2);
        var strTitle = ((typeof this.attr('title') !== 'undefined') ? this.attr('title') : 'Social Share');
    window.open( this.attr('href'), strTitle,
    "menubar=no,toolbar=no,resizable=yes,scrollbars=yes,width=" + width + ",height=" + height + ",top=" + top + ",left=" + left
      );
    }
    $('.comment a.social-share').on("click", function(e) {
        $(this).sharePopup(e, 600, 400);
    });
</script>

$.fn.sharePopup=功能(e、宽度、高度){
//防止默认锚事件
e、 预防默认值();
左侧变量=(屏幕宽度/2)-(宽度/2),
顶部=(屏幕高度/2)-(高度/2);
var strTitle=((typeof this.attr('title')!='undefined')?this.attr('title'):'Social Share');
window.open(this.attr('href')、strTitle、,
“菜单栏=否,工具栏=否,可调整大小=是,滚动条=是,width=“+width+”,height=“+height+”,top=“+top+”,left=“+left
);
}
$('.comment a.social-share')。关于(“单击”,函数(e){
$(此).sharePopup(e,600400);
});

任何人都知道如何修复它,因为即使是Google+帮助社区也没有回答这个查询/问题?

如果你发布一些代码,它会有所帮助;也许只是谷歌分享的一部分?你好@miltonb我刚刚更新了我的问题,我想我的代码没有问题,因为它在我的测试网站上工作。。。我认为这个问题只存在于adzbuzz.com域(包括其子域)上,尽管我无法确认。。