如何使用 OAuth 令牌调用 Facebook auth.getSession (REST API) 方法?

发布于 2024-11-01 20:10:01 字数 1337 浏览 0 评论 0 原文

问题是关于 Facebook REST 和 Graph API 之间的交互。

我正在构建一个 Facebook 应用程序。一旦我有了有效的 OAuth 访问令牌,我就会尝试通过访问 URL

http://api.facebook.com/method/auth.getSession?access_token=...

我收到这样的错误

<error_response xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">
  <error_code>100</error_code>
  <error_msg>The parameter auth_token is required</error_msg>
  <request_args list="true">...</request_args>
</error_response>

所以我调用了auth.createToken 紧随其后的方法,并且令牌已返回 ok 。然后我尝试通过访问以下 URL 再次调用 auth.getSession

http://api.facebook.com/method/auth.getSession?auth_token=...

我刚刚收到如下所示的不同错误

<error_response xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">
  <error_code>101</error_code>
  <error_msg>Invalid API key</error_msg>
  <request_args list="true">...</request_args>
</error_response>

那么我如何调用auth.getSession< /em> 方法,如果我只拥有有效的 OAuth 令牌?

Issue is about interactions between Facebook REST and Graph API .

I'm building a Facebook application. Once I have a valid OAuth access token I try to incloke auth.getSession method by accessing the URL

http://api.facebook.com/method/auth.getSession?access_token=...

and I get back errors like this

<error_response xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">
  <error_code>100</error_code>
  <error_msg>The parameter auth_token is required</error_msg>
  <request_args list="true">...</request_args>
</error_response>

So I called auth.createToken method immediately after that , and token was returned ok . Then I try to call auth.getSession once again by accessing this URL:

http://api.facebook.com/method/auth.getSession?auth_token=...

I just get a different error like the one shown below

<error_response xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">
  <error_code>101</error_code>
  <error_msg>Invalid API key</error_msg>
  <request_args list="true">...</request_args>
</error_response>

So how could I invoke auth.getSession method if I only have a valid OAuth token ?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文