私はPHPとJSONを使用してユーザーのツイートを簡単に取得できますが、フォロワーのリストを取得するとすぐにエラーが発生します。どちらもJSONを使用して値を返します。JSONをPHPでTwitterフォロワーにするには?
コードは次のとおりです。
Array
(
[next_cursor] => 0
[ids] => Array
(
[0] => 31085924
[1] => 53633023
[2] => 18263583
)
[previous_cursor] => 0
[next_cursor_str] => 0
[previous_cursor_str] => 0
)
私はnext_cursorとprevious_cursorの値を取得し、どのように私はちょうどIDS配列をループを実行するにはどうすればよい:
$jsonurl = "https://api.twitter.com/1/followers/ids.json?cursor=-1&screen_name=mooinooicat";
$contents = file_get_contents($jsonurl);
$results = json_decode($contents, true);
echo "<pre>";
print_r($results);
echo "</pre>";
これは私に、以下の配列を与えますか?
結果をデータベースに読み込むために解析する必要があります。
http://php.net/manual/en/language.types.array.php –
@andrebruton https://api.twitter.com/1/followers/ids.jsonそれは私が提供するスクリーンネームのフォロワーのIDを提供します、代わりにスクリーンネームを取得できますか? –
参照:[Twitter Followers API Tutorial](https://dev.twitter.com/rest/reference/get/followers/ids) – kenorb