根据documentation,您可以获取一些没有访问令牌的用户数据。当我尝试这个:

FB.api('/me', function(response) {
  console.log(response);
});


我得到以下对象:

{ error: {
    message: "An active access token ...about the current user.",
    type: "OAuthException"
} }


怎么了?提前致谢。

最佳答案

我结束了在其他源代码中的“发现”(因为它不在文档中),您可以使用名为{*actor*}的占位符。
它是这样工作的:

FB.ui({
  method: 'feed',
  link: '<? echo $app['url'] ?>',
  name: $poll.find('.pollQuestionContainer .pollQuestion').text(),
  caption: '{*actor*} answered ' + selected_answer,
  description: 'TV Channel',
  properties: answers
});

09-17 10:57