我喜欢用JSON开始编程,对于暴乱api,但我不知道如何启动它...我做过类似的事情,但这并没有显示任何东西大声笑..只是白页。
<html>
<head>
<title>JSON example</title>
<script language="javascript" >
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://euw.api.pvp.net/api/lol/euw/v2.5/league/by-summoner/31827832?api_key=myapikey');
// Set so curl_exec returns the result instead of outputting it.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
// Get the response and close the channel.
$response = curl_exec($ch);
curl_close($ch);
$json = json_decode($response, true);
foreach($json as $elem){
echo $elem[0]['name'];
echo $elem[0]['tier'];
}
</script>
</head>
<body>
</body>
</html>
答案 0 :(得分:0)
请查看我为Riot API介绍和使用/理解JSON编写的这些指南。
虽然你可以使用PHP之类的许多语言,但是我在Javascript / Ajax / JQuery中教它,而不是很容易应用于其他语言,特别是PHP,因为两者的语法看起来都很相似。
<强> [Tutorial] Beginners introduction to Riot API and JSON, using Javascript and Ajax 强>
我讨论API是什么以及如何使用它,以及保护您的密钥。我还提到了JSON以及如何使用程序访问和理解它。
如果您有任何问题,请与我们联系。