php 拉进一个Instagram饲料

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 拉进一个Instagram饲料相关的知识,希望对你有一定的参考价值。

<?php
		// Supply a user id and an access token
		$userid = "User-ID-Goes-Here";
		$accessToken = "Token-Goes-Here";

		// 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="fancybox" data-fancy="" href="<?= $post->images->standard_resolution->url ?>"><img src="<?= $post->images->thumbnail->url ?>"></a>
	<?php endforeach ?>

以上是关于php 拉进一个Instagram饲料的主要内容,如果未能解决你的问题,请参考以下文章

php 饲料deaktivieren

php [instagram php] instagram api #social

用 PHP 抓取 Instagram

php 社交instagram INSTAGRAM

带有 PHP 的 Instagram API

如何使用 jQuery 或 php 从 Instagram 令牌获取访问令牌