如何使用FB.UI在我的脸书朋友墙上发布
我的代码是
FB.ui({
method: 'feed',
link: 'https://developers.facebook.com/docs/',
to:['405631902932995,626150064162274'],
caption: 'An example caption'
}, function (response) {
console.log(response);
});
我收到错误
API Error Code: 100
API Error Description: Invalid parameter
Error Message: ["100004585663846,100003018593104"] does not resolve to a valid user ID
答案 0 :(得分:2)
该参数仅允许输入一个ID,而不是它们的数组。意思是,你想要达到的目标根本不可能,你只能指定一个朋友。
https://developers.facebook.com/docs/sharing/reference/feed-dialog/
您还可以使用“发送”对话框向朋友发送消息:https://developers.facebook.com/docs/sharing/reference/send-dialog
这同样适用于"至"参数,您只能指定一个收件人。