我有以下 php 代码从 steam web api 获取一个 json 文件。我似乎无法弄清楚为什么这没有收到任何信息。任何帮助,将不胜感激。
请使用您自己的 Steam API 密钥。
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</head>
<body>
<p>Welcome! <?php echo $_GET["fname"]; ?></p>
<p>Your steam id is
<?php
$username = $_GET["fname"];
$devKey = '<Insert Dev Key>';
$json_url = 'http://api.steampowered.com/ISteamUser/ResolveVanityURL/v0001/?key=' . $devKey . '&vanityurl=' . $username;
echo $json_url;
$json_output = json_decode ( $json_url, true );
echo $json_output['response']['steamid'];
?>
</p>
</body>
</html>