去接朋友' 来自 Facebook 个人资料的生日
我想从用户的 Facebook 个人资料(提供他们的 Facebook 凭据)中获取我网站上用户及其朋友的“生日”。
他们是 Facebook API/Connect 中的一项功能吗?我可以使用它在使用 Facebook API 的原生 Facebook 应用程序上尽可能从 facebook 获取这些详细信息。
我想将这些数据存储在我的数据库中,在此之前,将要求用户提供他们的 Facebook 凭据并同意。
I want to fetch 'birthdays' of users, and their friends on my website, from their facebook profiles (with their facebook credentials supplied).
Is their a feature in Facebook API/Connect that I can use to fetch these details from facebook as possible on Native Facebook Apps using Facebook API.
I want to store this data in my DB, and users will be asked for their facebook credentials and consent before this is done.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
阅读api文档这样的事情很容易完成。 你可以这样做:
Read the api documentation things like this are easily done. You can do it like this:
所以最近我想检查一下我的朋友,看看他们中是否有人今天过生日。 使用 FQL 这非常简单,我鼓励您更多地探索 FQL,因为它将产生比 Pierre 好心提供的解决方案更有效的解决方案。 这是代码的一小段:
So recently I wanted to check my friends to see if any of them had their birthday for the current day. Using FQL this is super easy and I encourage you to explore FQL more because it will yield a more efficient solution than, say, what Pierre kindly offered. Here is a small snippet of the code:
执行类似的操作或使用 Batch API 一次执行多个调用。 检查 Facebook API。
Do something like that or use the Batch API to do multiple calls at once. Check the Facebook API.
您可以通过 API 获取它,但 Facebook 的条款严格禁止您在数据库中存储除用户 ID 之外的任何内容 - 请参阅 开发者维基了解详细信息。 您每次都需要查询 API。
You could fetch it via the API, but Facebook's terms strictly forbid you from storing anything other than their user ID in your database - see the developer wiki for details. You will need to query the API each time.