相关疑难解决方法(0)

Facebook Graph API获取所有用户及其状态

我正在使用Facebook Graph API,我想知道是否还有一个电话中的所有用户及其当前状态列表?

我基本上想要与https://graph.facebook.com/me/friends相同的结果,但每个对象包含当前状态.

谢谢你的帮助!

编辑:

这是一些澄清.如果https://graph.facebook.com/me/friends?access_token=...得到我这个:( AKA我所有朋友的名单)

{
  "data": [
    {
      "name": "Foo",
      "id": "1"
    },
    {
      "name": "Bar",
      "id": "2"
    },
    {
      "name": "Foo Bar",
      "id": "3"
    },
    {
      "name": "Bar Foo",
      "id": "4"
    }
  ]
}
Run Code Online (Sandbox Code Playgroud)

什么URL或FQL会让我这样:( AKA我所有朋友和他们的状态列表)

{
  "data": [
    {
      "name": "Foo",
      "id": "1"
      "status": "This is my current status!"
    },
    {
      "name": "Bar",
      "id": "2"
      "status": "This is my current status!"
    },
    {
      "name": "Foo Bar",
      "id": "3"
      "status": "This …
Run Code Online (Sandbox Code Playgroud)

json facebook facebook-graph-api

9
推荐指数
1
解决办法
2万
查看次数

标签 统计

facebook ×1

facebook-graph-api ×1

json ×1