我正在尝试从 Facebook 获取用户事件,但我的请求遇到一些问题。我可以访问他们的个人资料图片和 UID,但由于某种原因,当我尝试访问事件时,出现以下错误:
{
"error": {
"type": "QueryParseException",
"message": "An active access token must be used to query information about the current user."
}
}
我有一个活动访问令牌,我用它来访问 UID 和个人资料图片,但由于某种原因,事件没有显示。
这是我的电话:
<a href=\"http://graph.facebook.com/me/$cookie['access_token']/events\">events</a>
我的登录按钮如下所示:
<fb:login-button perms="user_events"></fb:login-button>
登录后也会抛出错误。
错误是这样的:
The application must ask for a valid extended permission.
The invalid permissions requested were: .
我认为你的通话网址应该是这样的:
http://graph.facebook.com/me/events?access_token=[Your oAuth token]