1
このコードは別のWebフォームを作成したものです。私は私のInstragram IDを置くときだけです。それ以外の場合、別のユーザーからメディアを取得したい場合(変数useridを変更する)、作業を停止します。他のユーザーのメディアを取得することは可能ですか? Instgram API
ユーザーIDを取得するには、https://www.otzberg.net/iguserid/index.phpを必ず使用してください。 そして、(私だけのアカウントで)アクセストークンを取得するには:http://instagram.pixelunion.net/
<?php
// Supply a user id and an access token
$userid = "-----";
$accessToken = "---";
// 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 if(!empty($result->data)): ?>
<?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 ?>
<?php endif ?>
また、別のユーザーから最後のInstagramメディアを表示する最善の方法を教えてください。ありがとう –