私は Instagram PHP API ( https://github.com/cosenary/Instagram-PHP-API ) を使用しており、完全に機能していることがわかったソリューションを使用しました (解決策については、@kexxcream の回答を参照してください)。 : PHP を使用した特定のハッシュタグを持つ Instagram からすべての写真を取得することは明らかです)。それが私のドメインバインディングと関係があるかどうかはわかりません。私の会社は(ほとんどの会社と同様に)開発サーバーを取得し、それを自分のドメインにバインドしました。これは、Instagram フィードを取得するためにこのソリューションを使用した以前は問題ではありませんでしたが。
とにかく、誰が問題が何であるか知っていますか?
これが私のコードです:
<?php
// Get class for Instagram
// More examples here: https://github.com/cosenary/Instagram-PHP-API
require_once 'instagram.class.php';
// Initialize class with client_id
// Register at http://instagram.com/developer/ and replace client_id with your own
$instagram = new Instagram('09b639fa2d2845d99d7c3c748f273b30');
// Set keyword for #hashtag
$tag = 'insta';
// Get latest photos according to #hashtag keyword
$media = $instagram->getTagMedia($tag);
// Set number of photos to show
$limit = 8;
// Show results
// Using for loop will cause error if there are less photos than the limit
foreach(array_slice($media->data, 0, $limit) as $data)
{
#print('<pre>'); print_r($data); print('</pre>');
?>
<div class="insta-item">
<a href="<?php echo $data->link; ?>" target="_blank">
<img src="<?php echo $data->images->standard_resolution->url; ?>" height="46px" width="46px" alt="Pic" />
</a>
</div>
<?php
}
?>