祈愿超级支付

祈愿超级支付 GET
https://api.71ywl.com/api/index.php?qy=video23

接口描述

111

请求参数

参数名 类型 必填 示例 说明

请求示例

https://api.71ywl.com/api/index.php?qy=video23?url=请求数据

响应示例

{"code": 200, "msg": "success", "data": {}}

返回参数

参数名 类型 说明

响应码

状态码 说明
200 请求成功
400 请求参数错误
500 服务器内部错误

代码示例

<?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"

后台配置示例

curl
curl -X GET "https://api.71ywl.com/api/index.php?qy=video23?url=xxx"
php

                                    
python

                                    
javascript