<?php
$url = 'https://api.71ywl.com/api/index.php?qy=video23';
$response = file_get_contents($url);
$data = json_decode($response, true);
print_r($data);
?>
fetch('https://api.71ywl.com/api/index.php?qy=video23')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
import requests
url = 'https://api.71ywl.com/api/index.php?qy=video23'
response = requests.get(url)
data = response.json()
print(data)
curl -X GET "https://api.71ywl.com/api/index.php?qy=video23"