我使用下面的代碼來顯示我的網站上我的instagram帳戶的一些照片。它只是提取我的帳戶在div中的所有圖像。有沒有辦法將獲取的數據限制在10張左右?限制Instagram Feed在Php-Fetch
不知道該怎麼做..
感謝您的幫助!
<div id="instagramfeed">
<?php
// Supply a user id and an access token
$userid = "123xy";
$accessToken = "123xy ";
// 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/{$userid}/media/recent/?access_token={$accessToken}");
$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 ?> <br><br><br><br>
</div>
是的,我想在這之前...對不起,didnt比如說。當我這樣做,該div完全是空的..我不知道爲什麼會發生.. :( – user3599221 2015-02-12 08:28:37