0
私はtwitterユーザーの友人のリストを取得するいくつかの問題がある、私はTwitterOAuthライブラリを使用します。twitterで友達リストを取得するTwitterOAuthでAPIを
$oConnection = new TwitterOAuth($consumer_key, $consumer_secret, $access_token, $access_token_secret);
$armFollow = array();
foreach($_POST['user'] as $nUsrId) {
$armFollowList = $oConnection->get("friends/ids", ["user_id " => $nUsrId]);
$armFollow[$nUsrId] = $armFollowList->ids;
}
var_dump($armFollow);
$_POST['user']
は、ユーザーIDの配列です。 私はこのコードを使用すると私のアカウントの友人リストを取得するだけでもuser_idは私のものではありません。
ご協力いただきありがとうございます^^(と私の悪い英語のため申し訳ありません)