0

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

          };
    });
4

1 回答 1

1

原因是我收到以下错误: Object {error_code: 100, error_msg: "Viewer+cannot+message+specified+recipients."}

这是基于给定用户设置的权限问题。

于 2013-04-05T20:47:17.727 回答