输入手机号返二要素信息
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
apikey |
string | 是 | QX API平台用户KEY |
cx |
string | 是 | 手机号(+86) |
| 状态码 | 说明 |
|---|---|
| 200 | 请求成功,服务器已成功处理了请求。 |
| 403 | 服务器拒绝请求。这可能是由于缺少必要的认证凭据(如API密钥)或权限不足。 |
| 404 | 请求的资源未找到。请检查您的请求地址是否正确。 |
| 429 | 请求过于频繁。您已超出速率限制,请稍后再试。 |
| 500 | 服务器内部错误。服务器在执行请求时遇到了问题。 |
<?php
$url = 'https://api.xioru.com/API/xfg/tx.php';
$params = [
'apikey' => 'YOUR_VALUE',
'cx' => 'YOUR_VALUE',
];
$url .= '?' . http_build_query($params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
$response = curl_exec($ch);
if (curl_errno($ch)) {
echo 'cURL Error: ' . curl_error($ch);
} else {
echo $response;
}
curl_close($ch);
?>
import requests
url = "https://api.xioru.com/API/xfg/tx.php"
params = {
'apikey': 'YOUR_VALUE',
'cx': 'YOUR_VALUE',
}
try:
response = requests.get(url, params=params, timeout=30)
response.raise_for_status()
print(response.text)
except requests.exceptions.RequestException as e:
print(f"请求失败: {e}")
const url = new URL('https://api.xioru.com/API/xfg/tx.php');
const params = {
'apikey': 'YOUR_VALUE',
'cx': 'YOUR_VALUE',
};
Object.keys(params).forEach(key => {
if (params[key]) url.searchParams.append(key, params[key]);
});
fetch(url, {
method: 'GET',
headers: {
'Accept': 'application/json'
}
})
.then(response => {
if (!response.ok) {
throw new Error(`HTTP ${response.status}`);
}
return response.text();
})
.then(data => console.log(data))
.catch(error => console.error('请求失败:', error));