我正在尝试使用FB Send Dialog API。除了一个特定用户外,它适用于大多数用户。
FB.init({appId: fbappid, xfbml: true, cookie: true});
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
FB.ui({
method: 'send',
to: 'username',
display: 'iframe',
name: 'I just suggested a time and place',
link: linkval,
picture: 'http://'+domain+'/img/cupicon.png',
access_token: response.authResponse.accessToken // **This should work and tested** also!!!
})
};
});
答案 0 :(得分:1)
原因是我收到以下错误:对象{error_code:100,error_msg:“Viewer +无法+消息+指定+收件人。”}
这是基于给定用户设置的权限问题。