8 lines
212 B
PHP
8 lines
212 B
PHP
<?php
|
|
header("Access-Control-Allow-Origin: *");
|
|
$type = $_GET["type"];
|
|
$url = "http://v.juhe.cn/toutiao/index?type=".$type."&key=ae8dd0002b4d7df3f68d6c7de40d322e";
|
|
|
|
$data = file_get_contents($url);
|
|
echo $data;
|
|
?>
|