将 Facebook 联系人导入/同步到另一个应用程序
我正在用 PHP 创建一个 Web 应用程序,我想在其中同步/导入来自 facebook 的联系信息。我想将 Facebook 联系人中的个人资料图片和姓名复制到我的应用程序中。
是否有关于如何从应用程序完成此操作的描述/示例?
I am creating an web-application in PHP, where I would like to synch/import contact information from facebook. I would like to copy the profile picture and name from facebook contacts into my application.
Is there a description/example on how this can be done from an application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想从
朋友
获取信息 通过user
对象的连接=“https://developers.facebook.com/docs/reference/api/” rel="nofollow">Graph API:您可以使用
fields
参数指定所需的详细信息(请参阅user
对象文档):您还可以订阅 实时更新
用户
对象的朋友
连接,以获取有关添加/删除朋友的通知,以便您能够同步更改。可以在 PHP-SDK 中使用
Facebook::api
方法:阅读 文档,深入研究示例,读教程,你会发现什么你想要的。
You probably want to get info from
friends
connection ofuser
object via Graph API:You may specify desired details with
fields
argument (see full list of fields onuser
object documentation):You may also subscribe to Real-time Updates for
friends
connection ofuser
object to get notification on addition/removal of friends so you'll be able to sync changes.Same functionality can be achieved in PHP-SDK with
Facebook::api
method:Read the Documentation, dig into examples, read tutorials and you'll find what you want.
这里有关于如何使用 facebook 注册和获取用户数据的说明- sdk。
用户登录后,您可以获取用户数据并将其存储在数据库中。
Here there is an explanation about how to register and get user data with facebook-sdk.
Once user sign-in you can get user data and store it in your DB.