Facebook 好友的自动补全功能?
从用户那里获取所有必需的权限后,我想显示一个文本框,用户在其中输入他的朋友姓名,并通过显示相关朋友姓名的自动帮助类型功能获得帮助。
我认为唯一的方法是 FQL,但不支持使用“Like abc%”查询,也不可能连接表,那么我怎样才能实现这种类型的功能。
After taking all the required privileges from a user I want to display a text box where the user type his friend name and get assisted by auto-helper type functionality which shows related friends name .
I think only way is FQL but query with 'Like abc%' is not supported also joining of table is not possible then how can I achieve this type of functionality .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看到的唯一方法是获取他们的所有朋友并浏览他们。
您需要具有 read_friendlists 权限并向
https://graph.facebook.com/me/friends?access_token=...< /代码>
The only way I see is to get all their friends and browse through them
You need to have read_friendlists permissions and issue a GET request to
https://graph.facebook.com/me/friends?access_token=...