1
FacebookのJavascript SDKを使用すると(FBmlはもう使用できません)、Facebookのアプリを使用して壁に投稿すると名前、説明、キャプションが表示されません。私はリンクと表示を追加しようとしましたが、説明も削除されましたが、問題を修正するものはありません。名前の説明のキャプションは、壁の投稿に表示されません
これに関するヘルプや注意事項があります。
var description = $(this).parent().parent().children('.description').html();
var name = $(this).parent().parent().children('.name').html();
FB.ui(
{
method: 'feed',
attachment:
{
name: name,
caption: 'Test App',
description: description,
link: appLink,
href: appLink
},
action_links:
[
{ text: 'Test App', href: 'appLink' }
]
},
function(response)
{
if (response && response.post_id)
{
alert('Post was published.');
}
else
{
alert('Post was not published.');
}
}
);