PHPを使用してFacebookユーザーの友達リストをMySQLに保存する方法は?
以下の 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 に保存するにはどうすればよいですか?