我正在尝试使用 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!!!
})
};
});