FB Send Dialog API を使用しようとしています。1 人の特定のユーザーを除いて、ほとんどのユーザーで問題なく機能します。
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!!!
})
};
});