Facebook - 缺少帖子

时间:2012-01-19 12:28:37

标签: facebook feed

有没有办法在没有单词via xxxx的情况下在自己的页面上发帖? 此外,帖子还没有显示在页面本身上。

我找到了通过 https://graph.facebook.com/app_id/feed?access_token

并通过传递post id来查看它 http://developers.facebook.com/tools/explorer/

从那里发现帖子只有http://www.facebook.com/195116460556019/posts/261775633890101

我一直在使用的代码都来自我能找到的代码......虽然大多数代码看起来都很相似.. 范围是" scope = read_stream,publish_stream,manage_pages"

<script>
//API init code is omitted
var wallPost = {
    access_token: "token",
    message: 'Hello, world!'
};

FB.api('/app_id/posts', 'post', wallPost, function(response) {
    if (!response || response.error) {
        alert('Error occurred');
        console.log(response.error);
    } else {
        alert('Success!');
    }
});
  // Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     d.getElementsByTagName('head')[0].appendChild(js);
   }(document));
</script>

1 个答案:

答案 0 :(得分:1)

“有没有办法在没有单词via xxxx的情况下在自己的页面上发布”

不,这是设计的。它是让观众知道发布的来源。故意这样做是为了防止应用程序成为“垃圾邮件”。