如何使用访问令牌获取 Facebook 用户 ID
我有一个 Facebook 桌面应用程序,并且正在使用 Graph API。 我能够获取访问令牌,但完成后 - 我不知道如何获取用户的 ID。
我的流程是这样的:
我将用户发送到https://graph.facebook。 com/oauth/authorize 具有所有必需的扩展权限。
在我的重定向页面中,我从 Facebook 获取代码。
然后,我使用 API 密钥向 graph.facebook.com/oauth/access_token 执行 HTTP 请求,并在响应中获取访问令牌。
从那时起我就无法获取用户 ID。
如何解决这个问题呢?
I have a Facebook desktop application and am using the Graph API.
I am able to get the access token, but after that is done - I don't know how to get the user's ID.
My flow is like this:
I send the user to https://graph.facebook.com/oauth/authorize with all required extended permissions.
In my redirect page I get the code from Facebook.
Then I perform a HTTP request to graph.facebook.com/oauth/access_token with my API key and I get the access token in the response.
From that point on I can't get the user ID.
How can this problem be solved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
如果您想使用 Graph API 获取当前用户 ID,只需发送请求至:
If you want to use Graph API to get current user ID then just send a request to:
最简单的方法是
您将获得仅包含 userid 的 json 响应。
The easiest way is
then you will get json response which contains only userid.
facebook 访问令牌看起来也很相似
则为“1249203702|2.h1MTNeLqcLqw__.86400.129394400-605430316|-WE1iH_CV-afTgyhDPc”
如果使用 | 提取中间部分, 分割你得到
2.h1MTNeLqcLqw__.86400.129394400-605430316
然后再次分割 -
最后一部分 605430316 是用户 ID。
以下是从访问令牌中提取用户 ID 的 C# 代码:
警告:
访问令牌的结构没有记录,并且可能并不总是符合上述模式。使用它的风险由您自行承担。
更新
由于 Facebook 的变化。
从加密的访问令牌获取用户 ID 的首选方法如下:
The facebook acess token looks similar too
"1249203702|2.h1MTNeLqcLqw__.86400.129394400-605430316|-WE1iH_CV-afTgyhDPc"
if you extract the middle part by using | to split you get
2.h1MTNeLqcLqw__.86400.129394400-605430316
then split again by -
the last part 605430316 is the user id.
Here is the C# code to extract the user id from the access token:
WARNING:
The structure of the access token is undocumented and may not always fit the pattern above. Use it at your own risk.
Update
Due to changes in Facebook.
the preferred method to get userid from the encrypted access token is as follows:
您可以在 onSuccess(LoginResult loginResult) 上使用以下代码
You can use below code on onSuccess(LoginResult loginResult)
您只需点击另一个 Graph API:
它也会提供您的电子邮件 ID 和用户 ID(对于 Facebook)。
You just have to hit another Graph API:
It will give your e-mail Id and user Id (for Facebook) also.
使用最新的 API,这是我使用的代码
With the newest API, here's the code I used for it
在 FacebookSDK v2.1 中(我无法检查旧版本)。但是
根据 FacebookSDK @discussion 中的评论,
这对于 iOS 系统帐户等登录行为可能不会填充。
所以也许你应该检查它是否可用,然后是否使用它,或者调用请求来获取用户 ID
in FacebookSDK v2.1 (I can't check older version). We have
However according to the comment in FacebookSDK
@discussion This may not be populated for login behaviours such as the iOS system account.
So may be you should check if it is available, and then whether use it, or call the request to get the user id
查看这个答案,其中描述了如何获取 ID 响应。
首先,您需要创建方法获取数据:
然后只需在需要时使用您的方法即可,如下所示:
Check out this answer, which describes, how to get ID response.
First, you need to create method get data:
Then simply use your method whenever you want, like this: