是否可以通过图形调用从他们的 Facebook ID 号码中获取 Facebook 用户的姓名?如果是这样,有人知道电话吗?
例如,您可以通过以下调用获取用户的图片
"http://graph.facebook.com/" + someUserId + "/picture"
就像是:
String response = facebook.request(userId);
JSONObject json = Util.parseJson(response);
String name = json.getString("name");
String username = json.getString("username");
只需使用 查询 Graph APIuser_id
就足以获取用户名 -
http://graph.facebook.com/4
>>
{
"id": "4",
"name": "Mark Zuckerberg",
"first_name": "Mark",
"last_name": "Zuckerberg",
"link": "https://www.facebook.com/zuck",
"username": "zuck",
"gender": "male",
"locale": "en_US",
"updated_time": "2012-05-20T01:29:18+0000",
"type": "user"
}
您可以通过为名称字段添加过滤器来进一步深入了解 -
https://graph.facebook.com/4?fields=name
>>
{
"name": "Mark Zuckerberg",
"id": "4",
"type": "user"
}