我正在使用FB.ui
(https://developers.facebook.com/docs/reference/javascript/FB.ui/)在我的网站上创建“发布到您的墙上”功能:
var new_post = {
method: 'feed',
link: '/path/to/my/site',
picture: '/path/to/image.jpg',
name: 'My Site',
caption: 'Lorem',
description: 'Ipsum',
message: 'Check out this link, guys!' //this does not work
};
FB.ui(new_post, callback_defined_somewhere);
如何在帖子中添加预定义消息,例如“查看此链接,伙计们!”
我尝试将message
参数添加到new_post
对象中,但这似乎不起作用。
显示对话框时,焦点在文本框上,Say something about this...
而不是Check out this link, guys!
消息。
有什么建议么?