我的facebook应用程序中有一个脚本,它将在下拉列表中为用户提供他的Facebook好友列表。使用下面的代码,我可以抓住用户的朋友,但我只获取用户ID。
$api_key = 'xxx';
$secret = 'xxx';
include_once 'facebook.php';
$facebook = new Facebook($api_key, $secret);
$friends = $facebook->api_client->friends_get();
foreach ($friends as $friend)
{
echo $friend;// returns only the friend's ID and not name but i want to show the name
$url="https://graph.facebook.com/".$friend."/";
$res=file_get_contents($url);
}
使用this link我想获取用户名并将其显示在下拉列表中。我如何抓住它并仅回显$url
的名称?
{
"id": "4",
"name": "Mark Zuckerberg",
"first_name": "Mark",
"last_name": "Zuckerberg",
"link": "http://www.facebook.com/zuck",
"gender": "male",
"locale": "en_US"
}
答案 0 :(得分:3)
看看JSON_decode http://www.php.net/manual/en/function.json-decode.php
答案 1 :(得分:2)
$data = json_decode($str);
echo $data['name'];
简单就是那个
答案 2 :(得分:2)