私のInstagramのリストを取得する際に問題が発生しました。以下の私のコードを見てください。何が間違っているのですか?phpでinstagramの以下のリストを入手してください
私はこのエラーを取得しておいてください。 警告:無効な引数がforeachのために供給される()Cで:ライン上の\ WAMP \ WWW \アート\のindex.phpを51
function connectToInstagram($url){
$ch = curl_init(); //curl handle
curl_setopt_array($ch, array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_SSL_VERIFYHOST => 2));
$result = curl_exec($ch);
curl_close($ch);
}
function printFriends($access_token){
$url = 'https://api.instagram.com/v1/users/self/follows?access_token='.$access_token;
$instagramInfo = connectToInstagram($url);
$results = json_decode($instagramInfo, true);
//Parse through the information one by one.
foreach($results['data'] as $items){
$userImageURL = $items['profile_picture'];
echo '<img src="'.$userImageURL.'"/><br />';
}
}
エラーは何ですか? –
警告:C:\ wamp \ www \ art \ index.phpのforeach()の引数が無効です。 – Adora
あなたが試みる前に '$ results ['data']'に何かがあるかどうかチェックしましたか?それを繰り返しますか? –