12

我正在使用FB.ui发布到 Facebook 用户墙。但是,我不确定要使用哪些参数发布到页面或应用程序墙。有链接吗?

我正在尝试以该页面而不是用户帐户的身份发布到页面墙上。

发布到用户帐户的代码:

 FB.ui(
   {
     method: 'feed',
     name: name,
     link: link,
     picture: picture,
     caption: caption,
     description: redemption,
     message: message
   },
   function (response) {
     if (response && response.post_id) {
       alert(response.post_id);
     } else {

     }
   }
 );
4

6 回答 6

9

知道了:

你必须设置tofrom值:

FB.ui(    {
  method: 'feed',
  name: name,
  link: link,
  picture: picture,
  caption: caption,
  description: redemption,
  message: message,
  to: page_id,
  from: page_id    
 },    
function (response) {
    if (response && response.post_id) {
      alert(response.post_id);
    } else {

    }    
   }  
);
于 2011-01-11T00:51:44.940 回答
2

我使用 JavaScript SDK 在用户的墙上发布:

function graphStreamPublish(){
           var body = document.getElementById("txtTextToPublish").value;
            FB.api('/me/feed', 'post', { message: body }, function(response) {
                if (!response || response.error) {
                     alert('Error occured');
                } else {
                     alert('Post ID: ' + response.id);
                }
           });
     }

当我浏览Graph API 页面时,我想如果您更改'/me/feed/''pageId/feed',它可能会在该页面中发布消息。我不确定。- 只是一个建议。

于 2011-01-10T11:57:17.653 回答
2

分享到朋友的墙上,截至 2012 年 2 月:

FB.ui({
    method: 'stream.publish',
    app_id: appId,
    display: 'iframe',
    name: name,
    link: link,
    picture: picture,
    caption: caption,
    description: description,
    target_id: friendIds
});
于 2012-02-21T20:06:00.870 回答
1

要发布到 facebook 墙上,请使用以下...

使用简单调用调用下面的 js 函数,如下所示

<a href="#" onclick="publishWallPost()">Post to Wall image/text?</a> 


//facebook: post to wall 
function publishWallPost() {

      FB.ui({
          method: 'feed',
          name: 'Your App Name',
          caption: 'Caption Text',
          description: 'Your description text',
          link: 'https://www.facebook.com/link/link.link',
          picture: fbImg
        },
        function (response) {
          console.log('publishStory response: ', response);
        });
      return false;
}


window.fbAsyncInit = function () {
      FB.init({
        appId: 'Your App ID',
        status: true,
        cookie: true,
        xfbml: true
      });
};

(function () {
      var e = document.createElement('script');
      e.async = true;
      e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
      document.getElementById('fb-root').appendChild(e);
}());
于 2013-11-11T04:21:17.843 回答
0

抱歉,这是一个老问题,但我认为这可能对通过谷歌找到它的人有所帮助。 http://fbmhell.com/2011/07/facebook-share-popup-iframe-tabs-jquery/

于 2011-09-21T07:37:56.333 回答
-1

只要记住 target_id 需要被解析成一个 int。response["to"] 作为字符串返回。

于 2012-04-11T13:53:51.113 回答