通过 FQL 访问 BIO
当我通过 Graph API 检查特定用户(朋友)时,我可以看到他们的简历。如何使用 FQL 访问 BIO?
我似乎能够访问 Graph API 使用 FQL 返回的几项,但不能访问这一项。
When I examine a particular user (friend) via the Graph API, I can see their bio. How do I access the BIO with FQL?
I seem to be able to access the few items that the Graph API does return with FQL, but not this one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Per: http://developers.facebook.com/docs/reference/fql/user/
您可以使用
fql?q=SELECT about_me FROM user WHERE uid=me()
或者,如果您想要朋友的 about_me/bio,则运行以下命令:
'fql?q=SELECT about_me FROM user WHERE uid IN (SELECT uid2 FROMfriend where uid1=me())'
这是我的一些结果。注意一些空值、一些空白和一些填充:
Per: http://developers.facebook.com/docs/reference/fql/user/
You would use
fql?q=SELECT about_me FROM user WHERE uid=me()
Or if you want friend's about_me/bio, then run the following:
'fql?q=SELECT about_me FROM user WHERE uid IN (SELECT uid2 FROM friend where uid1=me())'
Here's some of my results. Notice some nulls and some blanks and some filled in: