Ich habe Probleme bekommen die Liste meiner Instagram folgt. Bitte beachten Sie meinen Code unten. Was mache ich falsch?Liste der folgenden für Instagram mit PHP
Ich erhalte diese Fehlermeldung: Warning: Invalid argument für foreach geliefert() in C: \ wamp \ www \ art \ index.php on line 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 />';
}
}
Was ist der Fehler, den Sie haben? –
Warnung: Ungültiges Argument für foreach() in C: \ wamp \ www \ art \ index.php in Zeile 51 – Adora
haben Sie überprüft, ob etwas in '$ results ['data'] 'vor dem Versuch vorhanden ist iterieren? –