我正在尝试从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: .
答案 0 :(得分:0)
我认为您的通话网址应如下所示:
http://graph.facebook.com/me/events?access_token=[Your oAuth token]