I'm attempting to retrieve a price history from Steam Market items and for what I found this is what I need and what I would use as a base to get a price history:
In browsers it works perfectly resulting in a JSON with a price history but in PHP it returns this:
Warning: file_get_contents(http://steamcommunity.com/market/pricehistory/?country=PT¤cy=3&appid=730&market_hash_name=Falchion%20Case): failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request in E:\...\test.php on line 3
Already tried to work around with curls
but until now nothing seems to work.
The code so far is:
<?php
echo file_get_contents("http://steamcommunity.com/market/pricehistory/?country=PT¤cy=3&appid=730&market_hash_name=Falchion%20Case");
?>