我正在使用下面的代码,就像来自https://developers.facebook.com/docs/reference/dialogs/feed/一样发布到用户墙。然而,帖子并没有出现在墙上。有什么我想念的吗?
FB.ui({
method: 'feed',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
description: 'Using Dialogs to interact with people.'
}, function(response){});
我已经connect.facebook.net/en_US/all.js
加载了 Javascript SDK。我必须添加以下代码吗?
FB.init({
appId: 'xxxXXxxx',
status: true,
cookie: true,
xfbml: true
});