我现在正在玩这个lib,然后才将我的网站移到它上面,但我遇到了一个问题。一些ID在“SteamId :: Create()”上给出XML错误 - 我的测试脚本:(使用API密钥)
<?php
require 'core/include.php';
$id = SteamId::create('76561198006311959');
/*$stats = $id->getGameStats('49520');
$achievements = $stats->getAchievements();*/
echo $id->getNickname()."<br/>";
echo $id->getSteamId64()."<br/>";
echo $id->realName."<br/>";
echo $id->isOnline()."<br/>";
echo $id->getFullAvatarUrl()."<br/>";
$games = $id->getGames();
echo "<br/>";
foreach ($games as $g) {
echo $g->getName()." ----- ";
echo $id->getTotalPlaytime($g->getId())."<br/>";
}
echo "<br/>";
/*foreach ($achievements as $k) {
echo $k->getName()."<br />";
echo $k->description."<br /><br />";
}
echo "<br/>";*/
&GT;
我已经尝试了我的ID,它可以在任何隐私设置下正常工作,不会导致任何错误。
导致错误的ID:
我唯一能想到的是他们是私人账户,但在我的其他网站上我能够很好地获取他们的游戏并且我将我的帐户更改为私人帐户并且仍然可以正常加载。在加载lib之后,我确实设置了WebApi :: setApiKey()。
我确实需要能够从私人帐户中获取游戏。
错误:
Fatal error: Uncaught exception 'Exception' with message 'String could not be parsed as XML' in D:\web\sites\gamersite\core\vendor\koraktor\steam-condenser\lib\steam\community\XMLData.php:32
Stack trace:
#0 D:\web\sites\gamersite\core\vendor\koraktor\steam-condenser\lib\steam\community\XMLData.php(32): SimpleXMLElement->__construct('http:// steamcom...', 0, true)
#1 D:\web\sites\gamersite\core\vendor\koraktor\steam-condenser\lib\steam\community\SteamId.php(337): XMLData->getData('http:// steamcom...')
#2 D:\web\sites\gamersite\core\vendor\koraktor\steam-condenser\lib\steam\community\SteamId.php(463): SteamId->fetchGames()
#3 D:\web\sites\gamersite\index.php(13): SteamId->getGames()
#4 {main}
Next exception 'SteamCondenserException' with message 'XML could not be parsed' in D:\web\sites\gamersite\core\vendor\koraktor\steam-condenser\lib\steam\community\XMLData.php:34
Stack trace:
#0 D:\web\sites\gamersite\core\vendor\koraktor\steam-condenser\lib\steam\community\SteamId.php(337): XMLData->getData('http:// steamcom...')
#1 D:\ in D:\web\sites\gamersite\core\vendor\koraktor\steam-condenser\lib\steam\community\XMLData.php on line 34
Steam链接有休息时间可以发布。
答案 0 :(得分:2)
似乎Valve(再一次)改变了XML端点。其中一个配置文件是私有的。过去,这些配置文件的XML数据将为空或返回有意义的错误(以XML格式)。现在,它似乎只会重定向到正常的HTML网站,并显示错误消息。此外,HTTP状态代码为200(OK),因此没有迹象表明数据是错误的。
注意:Valve已弃用XML API,Steam Condenser将在下一个主要版本中完全切换到Web API。