使用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.');
}
}
);
答案 0 :(得分:1)
这实际上是一个facebook错误。我已经向Facebook报告过,但自从他们确认错误并指定了中等优先级后,自2011年12月以来没有得到任何反馈。欢呼声。