この小さなコードを使用して、ユーザーの Steam インベントリを取得しようとしています:
$url = $steamprofile['profileurl']."inventory/json/730/2";
var_dump($url);
$json = json_decode(file_get_contents($url));
foreach($json->rgDescriptions as $value => $v) {
if ($v->tradable === 1) {
$name = $v->market_hash_name;
$icon_url = $v->icon_url;
?>
<div class="img__wrap">
<img class="img__img" src="http://cdn.steamcommunity.com/economy/image/<?=$icon_url?>" />
<div class="img__description_layer">
<p class="img__description"><?= $name ?></p>
</div>
</div>
<?php
} else {
}
}
しかし、ページを約 2 ~ 4 回更新すると、HTTP 429 Too Many Requests エラーが発生します。これが起こらないようにする方法はありますか、またはこれは私が修正できない蒸気の何かですか?