Facebook 访问令牌

发布于 2024-11-04 15:00:08 字数 619 浏览 0 评论 0原文

我有兴趣使用 facebook graph api 传递电子邮件并获取人名...类似:

https://graph.facebook.com/[email protected]&type=user&access_token=2227470867|2.havcPA9QlMy6tLY1FXqeJA__.3600.1304301600.0-502023190|fejBKRrESzcndWh2rM0ZtyFMGeE

返回:

{
   "data": [
      {
         "name": "Mark Zuckerberg",
         "id": "4"
      }
   ]
}

我的问题是如何获取 access_token?我构建的应用程序并不是为了让用户批准对使用 API 查找某人的姓名更感兴趣。

关于如何获得访问令牌的想法?

谢谢

I'm interested in using the facebook graph api to pass an email and obtain a person's name... Something like:

https://graph.facebook.com/[email protected]&type=user&access_token=2227470867|2.havcPA9QlMy6tLY1FXqeJA__.3600.1304301600.0-502023190|fejBKRrESzcndWh2rM0ZtyFMGeE

Which returns:

{
   "data": [
      {
         "name": "Mark Zuckerberg",
         "id": "4"
      }
   ]
}

My question is how do I get an access_token? I'm not building an app for user's to approve more interested in hitting the API to find a person's name.

Thoughts on how I can get an access token?

Thanks

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

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

发布评论

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

评论(2

極樂鬼 2024-11-11 15:00:08

您将需要使用 Developer 应用程序创建 Facebook 应用程序。然后,您可以获得应用程序身份验证令牌(请参阅 http://developers.facebook.com 的应用程序登录部分/docs/authentication/),这应该可以让您使用 Graph API。

You will need to create a Facebook application using the Developer app. You can then get an App authentication token (see the App Login section of http://developers.facebook.com/docs/authentication/) and that should let you hit the Graph API.

無心 2024-11-11 15:00:08

在使用 facebook graph api 时,您应该了解一些事情

  1. 首先您需要创建 Facebook 应用程序,它将提供APP IDAPP Secret< /strong> 但不是访问令牌

    您可以关注的参考:- http:// techpost360.blogspot.com/2016/10/build-your-own-facebook-app.html

  2. 其次,您需要创建您在第一点中创建的应用程序的访问令牌
    您可以参考:-http://techpost360.blogspot.com /2016/10/create-facebook-access-token.html

当然,要执行上述两项活动,您需要登录“http://developers.facebook.com"

现在如何创建访问令牌,请按照以下步骤操作:-

  1. 登录“https://developers.facebook.com/"
  2. 在顶部菜单上转到“工具和支持”
  3. 您将被重定向到新屏幕上,您将在新页面上找到一个链接“访问令牌工具”,只需单击它即可。
  4. 在“访问令牌工具”屏幕上,您可以找到您之前创建的所有应用程序。只需尝试找到您创建的应用程序即可。
  5. 找到您的应用程序后,您会发现链接显示“您需要向您的应用程序授予权限才能获取访问令牌”,只需单击该链接和您的“访问令牌”准备好了。
  6. 要扩展“访问令牌”限制,您可以单击调试,然后它会将您重定向到新屏幕,您只需单击“扩展访问令牌”

希望这会帮助您使用访问令牌。有关更多详细信息,请点击上面发布的参考文章链接。

谢谢

While working with facebook graph api there are couple of things you should know

  1. First you need to create Facebook app which will give APP ID and APP Secret but not Access Token

    Reference you can follow : - http://techpost360.blogspot.com/2016/10/build-your-own-facebook-app.html

  2. Secondly you need to create the Access Token for the app which you have created in first point.
    Reference you can follow : -http://techpost360.blogspot.com/2016/10/create-facebook-access-token.html

And off course for performing above two activity you need to login to "http://developers.facebook.com"

Now how to create Access Token please find the steps below :-

  1. Login to "https://developers.facebook.com/"
  2. On the top menu goto "Tools & Support"
  3. You will be redirected to new screen, on the new page you will find a link "Access Token Tool" just click on it.
  4. On the "Access Token Tool" screen you can find all the apps which you have created previously. Just try to find the app which you have created.
  5. Once you find your app than you will find link stating "You need to grant permission to your app to get an access token", just click on the link and your "Access Token" is ready.
  6. For extending the "Access token" limit you can click on Debug and than it will redirect you to new screen where you can just click on "Extend Access TOken"

Hope this will help you to play with the Access Token. For more details you follow reference article links posted above.

Thanks

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