如何使用Facebook Graph API获取用户的网络信息? (PHP) [英] How to get user's network information using Facebook Graph API? (PHP)

查看:131
本文介绍了如何使用Facebook Graph API获取用户的网络信息? (PHP)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一周以来一直在使用Facebook Graph API,但仍然找不到如何获取用户的网络信息?我不知道Graph API是否存储用户的网络;我没看到这样的信息。简单来说,如果用户在Google网络中,我可以获取用户所属网络的名称和ID吗?



如果不可能,感谢您的帮助。

解决方案

使用 FQL 关联用户表中的字段包含此信息



示例调用:
https://graph.facebook。 com / fql?q =从用户那里选择从属关系uid = 4& access_token =< ACCESS TOKEN>



样本响应:

  {
data:[
{
affiliations:[
{
nid:16777217,
name:哈佛,
type:college
},
{
nid :50431648,
name:Facebook,
type :工作
}
]
}
]
}


I have been playing with Facebook Graph API around a week, and I still could not find how to get user's network information? I don't know if the Graph API stores user's network; I didn't see such information. Simply, if a user is in "Google" network, may I get the name and the ID of the networks that the user belongs to?

If this is not possible, may I reach the user's secondary email addresses?

Thanks for your help.

解决方案

Using FQL : the affiliations field of the User table contains this information

Sample call: https://graph.facebook.com/fql?q=select affiliations from user where uid= 4&access_token=<ACCESS TOKEN>

Sample response:

{
  "data": [
    {
      "affiliations": [
        {
          "nid": 16777217, 
          "name": "Harvard", 
          "type": "college"
        }, 
        {
          "nid": 50431648, 
          "name": "Facebook", 
          "type": "work"
        }
      ]
    }
  ]
}

这篇关于如何使用Facebook Graph API获取用户的网络信息? (PHP)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆