我试图从网站获取 json 数据。在第一个链接中,它返回空白。但在第二个中,它返回 json。
有人知道我该怎么做才能从第一个链接获取 json 数据?
在访问此代码之前,请登录此链接: https ://loginfree.globo.com/login/438 用户:cartolaewlfa@gmail.com 密码:cartoletasfc
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<iframe src="http://cartolafc.globo.com/time/claudioivp-allianz/atletas.json?rodada_id=12"></iframe>
<?php
$file = json_decode(file_get_contents("http://cartolafc.globo.com/time/claudioivp-allianz/atletas.json?rodada_id=12"));
print_r($file);
echo "casa";
?>
<iframe src="http://cartolafc.globo.com/mercado/filtrar.json?page=1&order_by=preco&clube_id=277"></iframe>
<?php
$file = json_decode(file_get_contents("http://cartolafc.globo.com/mercado/filtrar.json?page=1&order_by=preco&clube_id=277"));
print_r($file);
echo "casa";
?>
</body>
</html>