鍍金池/ 問答/PHP  網(wǎng)絡(luò)安全/ 如何取得facebook 頭像?甚至保存到本機(jī)來?

如何取得facebook 頭像?甚至保存到本機(jī)來?

關(guān)於facebook 登入!

clipboard.png

印出 getPicture() 後是這樣的格式:

{"height":50,"is_silhouette":false,"url":"https:\/\/lookaside.facebook.com\/platform\/profilepic\/?asid=xxx&height=50&width=50&ext=xxx&hash=xxsxsxsxsxs","width":50}

我要怎麼直接抓出 url key的value?

回答
編輯回答
亮瞎她
$me = $response->getGraphUser();
$pictureJson = $me->getPicture();
$pictureItem = json_decode($pictureJson,true);
echo $pictureItem['url'];

大概就是把這個json字符串轉(zhuǎn)換成PHP數(shù)組。然后再處理。

2017年2月21日 10:56