通过 FQL 访问 BIO

发布于 2024-12-27 20:44:08 字数 110 浏览 2 评论 0原文

当我通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眉黛浅 2025-01-03 20:44:08

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())'

这是我的一些结果。注意一些空值、一些空白和一些填充:

  "data": [
    {
      "about_me": ""
    },
    {
      "about_me": "aspiring rocket scientist"
    },
    {
      "about_me": ""
    },
    {
      "about_me": "Enjoying Life"
    },
    {
      "about_me": null
    }, 

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:

  "data": [
    {
      "about_me": ""
    },
    {
      "about_me": "aspiring rocket scientist"
    },
    {
      "about_me": ""
    },
    {
      "about_me": "Enjoying Life"
    },
    {
      "about_me": null
    }, 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文