gpt4 book ai didi

php - Instagram API 分页器

转载 作者:搜寻专家 更新时间:2023-10-31 22:04:37 24 4
gpt4 key购买 nike

好的,经过几个月的网站 build ,我正处于最后阶段,我遇到了我的第一堵无法攀登的墙。

我想给这个页面添加分页.. http://hooligansforlife.com/bands.php?info=All%20Projects&sub=Fan%20Feed每页 24 张图片,但我尝试过的一切(我已经尝试了几个小时!)都失败了。

我讨厌厚脸皮,但我没主意

提前谢谢你,我使用的代码如下..

<table cellspacing="7"><tr>
<?php
$count = 0;
function callInstagram($url)
{
$ch = curl_init();
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);
return $result;
}

$tag = '[tag]';
$client_id = "[id]";
$url = 'https://api.instagram.com/v1/tags/[tag]/media/recent?client_id=[id]&count=24';

$inst_stream = callInstagram($url);
$results = json_decode($inst_stream, true);

//Now parse through the $results array to display your results...
foreach($results['data'] as $item)
{
$image_link = $item['images']['thumbnail']['url'];
$author = $item['caption']['from']['username'];
$link = $item['link'];
$date = $item['created_time'];
$likes = $item['likes']['count'];
$comments = $item['comments']['count'];
?>

<td onmouseout="this.style.opacity=1;" onmouseover="this.style.opacity=0.7;" class="content_box"><a href="<?php echo $link; ?>" target="_blank">
<table cellspacing="1">

<tr><td colspan="2"><img src="<?php echo $image_link; ?>"></td></tr>
<tr><td class="show_with_field" style="padding-left:5px; width: 110px;"><strong><?php echo $author; ?></strong>

</td>
<td class="discography_date" valign="bottom"><img height="8" src="images/main/like.png" width="8"> : <?php echo $likes; ?></td></tr>

<tr><td style="padding-left:5px; width: 110px;" class="discography_date"><?php echo date("jS F Y",$date); ?></td>

<td class="discography_date" valign="bottom"><img height="8" src="images/main/comment.png" width="8"> : <?php echo $comments; ?></td></tr>
</table></a></td>

<?php
$count++;

if ($count >= 6)
{
echo '</tr><tr>';
$count = 0;
}
}
?>
</td>
</tr>
</table>

最佳答案

如果我们查看文档,则无法定义返回的项目数

http://instagram.com/developer/endpoints/tags/

您应该将结果保存在数据库中,然后直接在数据库中查询以在 24 点之前检索项目。例如,您可以使用 cron 作业来使数据库保持最新。

关于php - Instagram API 分页器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21173558/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com