私はInstagramにこの構造を使用しています:
<?php
// Supply a user id and an access token
$userid = "--user--";
$accessToken = "--token--";
// Gets our data
function fetchData($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
// Pulls and parses data.
$result = fetchData("https://api.instagram.com/v1/users/--user--/media/recent/?access_token=--token--");
$result = json_decode($result);
?>
<?php foreach ($result->data as $post): ?>
<!-- Renders images. @Options (thumbnail,low_resoulution, high_resolution) -->
<a class="group" rel="group1" href="<?= $post->images->standard_resolution->url ?>"><img src="<?= $post->images->thumbnail->url ?>"></a>
<?php endforeach ?>
しかし、このプリント:
警告:40行目の/home/mysite/index.phpのforeach()に無効な引数が指定されました
40.line:
<?php foreach ($result->data as $post): ?>
この構造の何が問題になっていますか?
この構造はhttp://www.blueprintinteractive.com/blog/how-instagram-api-fancybox-simplifiedです。