出于某种原因,我无法弄清楚如何在任何地方在线解决这个问题?我有这个简单的免费查克诺里斯笑话 api,我只是想输出它的 json,但它不起作用?我只是得到一个空白屏幕?
在控制台中,网络选项卡显示 200 ok 并且标头有效?我究竟做错了什么?
我的代码:
<?php
header('Content-Type: application/json');
header('X-RapidAPI-Host: matchilling-chuck-norris-jokes-v1.p.rapidapi.com');
header('X-RapidAPI-Key: 341b5c1156msh6827bf7184ef4ddp1c8d09jsnbc52db5d01be');
$str = file_get_contents('https://matchilling-chuck-norris-jokes-v1.p.rapidapi.com/jokes/random');
// decode JSON
$json = json_decode($str, true);
// get the data
print_r($json);
慕无忌1623718