如何使用 PHP 在 MySQL 中存储 Facebook 用户的好友列表?
我可以使用下面的 PHP 代码获取并打印用户的好友列表吗?
//get friends list
$friends_list = file_get_contents('https://graph.facebook.com/me/friends?access_token=' . $atoken );
$friends_list_array = json_decode($friends_list,true);
//convert so that store in mysql
$my_friends = implode("," , $friends_list_array['data']);
echo "</br> my friends" . $my_friends;
//result my friendsArray,Array,Array,Array,Array,Array,Array,Array.....
如何在 MySQL 中存储好友列表?