有没有可能通过WebAPI从Steam获取游戏的价格?
您可以查看GetSupportedAPIList(可用的
here),看到似乎没有办法获得应用程序的价格.
示例代码有点大,因为我必须设置欧元符号的编码才能正常显示,但是您应该可以从中提取所需的内容:
- <html>
- <head>
- <Meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- </head>
- <body>
- <?PHP
- $string = "Other Data in the document<div class=\"game_purchase_price price\" itemprop=\"price\">49,99€</div>Some More Data!";
- $regex = "/\<div class\=\"game_purchase_price price\" itemprop\=\"price\"\>(.*?)\<\/div\>/";
- preg_match_all($regex,$string,$matches);
- for($i = 0; $i < count($matches[1]); $i++)
- {
- $match = $matches[1][$i];
- echo $match;
- }
- ?>
- </body>
- </html>