我正在学习instagram api,以便最近在我的网站上获取某些标签图片。
在网上搜索了很长时间后,我找不到任何可行的代码。
任何人都可以提供帮助吗?
谢谢!
答案 0 :(得分:12)
如果您只需要在标签上显示图像,则不包含包装类“instagram.class.php”。作为媒体& Instagram API中的标记端点不需要身份验证。您可以使用以下基于卷曲的功能根据您的标记检索结果。
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 = 'YOUR_TAG_HERE';
$client_id = "YOUR_CLIENT_ID";
$url = 'https://api.instagram.com/v1/tags/'.$tag.'/media/recent?client_id='.$client_id;
$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']['low_resolution']['url'];
echo '<img src="'.$image_link.'" />';
}
答案 1 :(得分:5)
您需要使用API端点通过主题标签获取最近标记的媒体列表。看起来像是为了获得标签#superpickle
的媒体https://api.instagram.com/v1/tags/superpickle/media/recent
您需要阅读Instagram API文档以了解有关它的更多信息以及如何注册客户端ID。 http://instagram.com/developer/
答案 2 :(得分:0)
您可以使用statigram cURL方法,不是Instagram API,但可以解决它。 我使用CodeIgniter并提供服务来返回XML,使用simple_xml_load来读取feed。 好运。
$curl = curl_init();
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($curl, CURLOPT_URL, "http://statigr.am/feed/cristiano");
$content = curl_exec($curl);
curl_close($curl);
$this->xml = simplexml_load_string($content, 'SimpleXMLElement', LIBXML_NOCDATA);
echo json_encode($this->xml->channel);