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.');
}
}
);