使用FB.ui发布到页面墙
我正在使用 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 {
}
}
);
I'm using FB.ui
to post to a Facebook user wall. However, I am uncertain on which parameters to use to post to a Page or Application wall. Any links?
I am trying to post to the Page wall as that page, not as the user's account.
Code to post to user account:
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 {
}
}
);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
明白了:
您必须设置
to
和from
值:Got it:
you have to set the
to
andfrom
values:我使用 JavaScript SDK 在用户墙上发布:
当我浏览 Graph API 页面< /a> 我认为如果您将
'/me/feed/'
更改为'pageId/feed'
那么它可能会在该页面中发布消息。我不知道。 - 只是一个建议。I used the JavaScript SDK to post on user's wall:
When I go through the Graph API Page I think if you change
'/me/feed/'
to'pageId/feed'
then it may post the message in that page. I am not sure. - just a suggestion.截至 2012 年 2 月,在朋友的墙上分享:
To share on a friend's wall, as of February 2012:
要发布到 Facebook 墙,请使用以下命令...
使用简单的调用来调用下面的 js 函数,如下所示
To post to facebook wall use the following.. .
Call the below js function using simple call as in below
抱歉,这是一个老问题,但我认为这可能对通过谷歌找到它的人有帮助。
http://fbmhell.com/2011/07/facebook-分享-popup-iframe-tabs-jquery/
Sorry, this is an old question, but I thought this might be helpful for people who find it via google.
http://fbmhell.com/2011/07/facebook-share-popup-iframe-tabs-jquery/
只需记住 target_id 需要解析为 int 即可。响应[“to”]作为字符串返回。
Just remember target_id needs to be parsed into an int. The response["to"] comes back as a string.