脸书连接 API
是否可以使用 facebook connect api 来获取一些信息并将其用于自定义表单? 因为 facebook register api 显示了一个预先填写的表单,所以如何获取这些数据并将其与另一个表单一起使用 谢谢
Is it possible to use the facebook connect api to just grab some information and use it with a customized form?
Because facebook register api shows a pre-filled form, how to get these data and use them with another form
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 Facebook PHP SDK(参见 github)。以下是您将如何做到这一点。
在这里,如果
$user
不为 null,则用户已登录,并且您在数组$user_profile
中拥有他的个人数据。以下是您可以生成预填充一些 Facebook 数据的表单示例:
请参阅 Facebook PHP SDK 示例,了解有关流程的更多详细信息。
You should use the Facebook PHP SDK (see on github). Here is how you would do that.
Here, if
$user
is not null, the user is logged in and you have his personal data in the array$user_profile
.Here is an example of the form you can generate pre-filled with some Facebook data :
See the example of the Facebook PHP SDK for more detail on the flow.