facebook graph api: /me OAuthException (c#)
本文关键字:OAuthException me graph api facebook | 更新日期: 2023-09-27 17:57:13
var json = new WebClient().DownloadString("https://graph.facebook.com/me?access_token=" + app.AccessToken);
当我从图形 API 获取其他内容时,我的访问令牌有效。但是当我尝试获取有关当前用户的信息时,我收到错误消息:
{
"error": {
"type": "OAuthException",
"message": "An active access token must be used to query information about the current user."
}
}
用户已在页面上连接到我的应用。我错过了什么吗?我所需要的只是他的用户ID。谢谢
访问令牌过期。 您需要确保您拥有的访问令牌有效。 请参阅 https://developers.facebook.com/blog/post/500。