Facebook喜欢按钮不发布为非FB应用程序Devs提供

时间:2013-03-13 17:03:56

标签: javascript facebook facebook-like

我想尝试设置简单的Facebook,以及视频的动态链接。下面的视频功能(publishVidToFB())效果很好!但是我不能让这个地狱般的“喜欢”为除了我之外的任何人工作。

该应用未处于沙盒模式。喜欢对我很好,但我的评论并没有通过。对于那些未在应用程序中设置为“Facebook开发者”的其他开发人员 - 喜欢的人根本没有在他们的新闻源上出现。

FB调试器并没有抱怨og:image标签中的图像大小。

请参阅下面的代码,请帮忙!

!DOCTYPE html

HTML

*head*

    *meta property="fb:app_id" content="app id is here" *
    *meta property="og:url" content="link back to the originating page is here... "*
    *meta property="og:site_name" content="site name code is here like 'INTERNALCODE'"*
    *meta property="og:image" content="web linkable image is here"*
    *meta property="og:description" content="description blah blah."*
    *meta property="og:type" content="company"*
    *meta property="og:title" content="blah blah blah"*
*/head*
*body*
    *div id="fb-root"**/div*
    *input type="button" value="Publish" onclick="publishVidToFB(); return false;" *
    *script*

    window.fbAsyncInit = function() {
            FB.init({
              appId      : 'my appid is here', // App ID
              status     : true, // check login status
              cookie     : true, // enable cookies to allow the server to access the session
              oauth      : true, // enable OAuth 2.0
              xfbml      : true  // parse XFBML
            });
        };

        (function(d, s, id) {
          var js, fjs = d.getElementsByTagName(s)[0];
          if (d.getElementById(id)) return;
          js = d.createElement(s); js.id = id; js.async = true;
          js.src = document.location.protocol + "//connect.facebook.net/en_US/all.js";
          fjs.parentNode.insertBefore(js, fjs);
        }(document, 'script', 'facebook-jssdk'));


        function publishVidToFB(){
            FB.ui({
               method: "stream.publish",
               user_message_prompt: "",
               message: "message",
               attachment: {
                  name: "Check out this cool video",
                  caption: "Video caption goes here etc etc etc",
                  href: "my href is here",
                  media:[{
                      "type": "image", 
                      "src": "image source is here",
                      "href": "myhref is here"
                    }]
                }
            });
        };

    */script*
    *div class="fb-like" data-href="href is here" data-send="false" data-width="450" data-show-faces="false"**/div*
*/body*

/ HTML

1 个答案:

答案 0 :(得分:0)

解决。 Facebook已将我的所有测试列入黑名单。等了几天,在其他问题上工作,我们一直在运行。