我正在开发一个项目,通过主题标签在相册中显示选定的 Instagram 照片,因为 Instagram API 限制每个 API 调用 35 张图片,我发现我要么必须使用 AJAX(我非常不擅长),要么混合使用 PHP 和阿贾克斯。我决定使用后者,因为我不希望我的访问令牌和用户 ID 在我的画廊的代码中可用。
<?PHP
function jsongram($next=null){
$userid = "xxx";
$accessToken = "xxx";
$url = ("https://api.instagram.com/v1/users/{$userid}/media/recent/?access_token={$accessToken}");
if($url !== null) {
$url .= '&max_id=' . $next;
}
//Also Perhaps you should cache the results as the instagram API is slow
$cache = './'.sha1($url).'.json';
//unlink($cache); // Clear the cache file if needed
if(file_exists($cache) && filemtime($cache) > time() - 60*60){
// If a cache file exists, and it is newer than 1 hour, use it
$jsonData = json_decode(file_get_contents($cache));
}else{
$jsonData = json_decode((file_get_contents($url)));
file_put_contents($cache,json_encode($jsonData));
}
?>
<html>
<head>
</head>
<body>
<?php
$data_array = array();
foreach ($jsonData->data as $data){
if (stripos($data->caption->text,'egypt') === false) {
}
else{
$data_array[] = $data;
$data = (str_split($data->caption->text));
$data = (array_filter($data));
}
}
foreach ($data_array as $data):{
$igimglow = $data->images->low_resolution->url;
$igimgstd = $data->images->standard_resolution->url;
$igimgthumb = $data->images->thumbnail->url;
$igcaption = str_replace('#', '', (preg_replace('/(?:#[\w-]+\s*)+$/', '', $data->caption->text)));
$igtime = date("F j, Y", $data->caption->created_time);
$iglikes = $data->likes->count;
$igcomments = $data->comments->count;
$iglong = $data->location->longitude;
$iglat = $data->location->latitude ;
$igusername = $data->user->username;
$igfullname = $data->user->full_name;
$iglink = $data->link;
$igfilter = $data->filter;
$igtags = implode(',',$data->tags);
?>
<img src="<?php echo ($igimglow);}?>">
<?php endforeach ?>
<?php
if(isset($jsonData->pagination->next_max_id)) {
$result .= '<div><a href="?next=' . $jsonData->pagination->next_max_id . '">Next</a></div>';
}
return $result;
}
?>
<div id="container">
<?=jsongram(@$_GET['next']);?>
<div id="result"></div>
</div>
</body>
</html>
这是上面代码的一个活生生的例子:
http://johnricedesign.com/examples/pn.php
如上图所示,在第 2 页上显示了带有“埃及”标签的照片。我想用“加载更多”按钮替换“下一步”链接以在同一页面上自动加载 - 据我所知,使用 AJAX 是唯一的方法。但是我不知道该怎么做,甚至不知道从哪里开始。我遇到的第二个明显问题是,即使我删除了不包含“埃及”标题的照片,我仍然会得到很多空白,我认为一旦使用 AJAX,修复起来会相当简单.
在过去的 5 天里,我一直在努力做到这一点。您的帮助,建议,智慧,非常感谢您提前。