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