facebook 图形 api: /me OAuthException (c#)

发布于 2024-11-08 19:04:25 字数 423 浏览 0 评论 0原文

var json = new WebClient().DownloadString("https://graph.facebook.com/me?access_token=" + app.AccessToken);

当我从图形 api 获取其他内容时,我的 accesstoken 起作用。但是,当我尝试获取有关当前用户的信息时,我收到错误消息:

{
"error": {
  "type": "OAuthException",
  "message": "An active access token must be used to query information about the current user."
}
}

用户已连接到页面上的我的应用程序。我错过了什么吗?我所需要的只是他的用户ID。谢谢

var json = new WebClient().DownloadString("https://graph.facebook.com/me?access_token=" + app.AccessToken);

My accesstoken works when im fetching other stuff from the graph api. But when i try to get info about the current user i get the errormessage:

{
"error": {
  "type": "OAuthException",
  "message": "An active access token must be used to query information about the current user."
}
}

The user has connected to my app on the page. Did i miss something? All i need is his userID. Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

維他命╮ 2024-11-15 19:04:25

访问令牌过期。您需要确保您拥有的访问令牌有效。请参阅https://developers.facebook.com/blog/post/500

access token expire. you need to ensure that the access token you have is valid. see the https://developers.facebook.com/blog/post/500.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文