我正在使用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 {
}
}
);
答案 0 :(得分:9)
知道了:
您必须设置to
和from
值:
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 {
}
}
);
答案 1 :(得分: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 Page时,我认为如果您将'/me/feed/'
更改为'pageId/feed'
,则可能会在该页面中发布消息。我不确定。 - 只是一个建议。
答案 2 :(得分: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
});
答案 3 :(得分: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);
}());
答案 4 :(得分:0)
抱歉,这是一个老问题,但我认为这可能对通过谷歌找到它的人有所帮助。 http://fbmhell.com/2011/07/facebook-share-popup-iframe-tabs-jquery/
答案 5 :(得分:-1)
请记住,target_id需要解析为int。响应[“to”]以字符串形式返回。