1

file_get_contents に問題があります。この URL からコンテンツを取得する必要がありました: http://steamcommunity.com/market/priceoverview/?currency=1&appid=730&market_hash_name=P250%20|%20Valence%20(フィールド テスト済み)

私のブラウザ、私のphpスクリプトで開くとうまくいきます:

$item = "P250 | Valence (Field-Tested)"; $link = 'http://steamcommunity.com/market/priceoverview/?currency=1&appid=730&market_hash_name='.urlencode($item); echo file_get_contents($link);

このエラーをスローします:
Warning: file_get_contents(http://steamcommunity.com/market/priceoverview/?currency=1&appid=730&market_hash_name=P250+%7C+Valence+%28Field-Tested%29): failed to open stream: HTTP request failed! HTTP/1.0 429 Unknown

4

1 に答える 1

0

エラー メッセージによると、Steam のサーバーから429HTTP エラーを受信して​​います。

429 Too Many Requests (RFC 6585)
The user has sent too many requests in a given amount of time. Intended for use with rate limiting schemes.

ソース

于 2015-11-15T11:48:43.837 に答える