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 {
}
}
);
とった:
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 {
}
}
);
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);
}
});
}
グラフAPIページ を変更すると'/me/feed/'
から'pageId/feed'
その後、そのページにメッセージを投稿する場合があります。私はわかりません。 -単なる提案です。
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
});
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);
}());
申し訳ありませんが、これは古い質問ですが、グーグルで見つけた人には役立つかもしれないと思いました。 http://fbmhell.com/2011/07/facebook-share-popup-iframe-tabs-jquery/