我已经实现了通过api向朋友发送消息,如下所示。
function share(){
FB.ui({
appId : 'xxxxxxxx',
method: 'send',
to : ["xxxxxxxxx"],
link : "https://www.facebook.com",
name : "xxxxxxxxx",
description : "message"
});
}
我能够发送消息,但接收者会收到消息
"此附件可能已被删除,或者分享该附件的人可能无权与您共享。"
我哪里错了?