【云任务】葫芦侠签到
提交账号后永久使用,每天自动签到葫芦侠所有板块
请求信息
http://api.tinise.cn/api/hlxrw
总调用次数
17 次
添加时间
2025-11-25
调用价格
5.00 元/次
请求参数
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| type | string | 是 | type=1为提交或更新账号,type=2为删除指定账号,type=2时必须传入所需要删除的提交任务时提交的账号以及对应账号的密码和当前api秘钥 |
| user | string | 是 | 葫芦侠绑定的手机号 |
| pass | string | 是 | 葫芦侠密码 |
| apikey | string | 是 | api秘钥,可登录用户后台查看,当前价格为单账号永久价格 |
返回示例
JSON
暂无返回示例
调用示例
PHP
<?php
$url = 'http://api.tinise.cn/api/hlxrw';
$params = [
'type' => 'YOUR_VALUE',
'user' => 'YOUR_VALUE',
'pass' => 'YOUR_VALUE',
'apikey' => 'YOUR_VALUE',
];
$url .= '?' . http_build_query($params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
Python
import requests
url = "http://api.tinise.cn/api/hlxrw"
params = {
'type': 'YOUR_VALUE',
'user': 'YOUR_VALUE',
'pass': 'YOUR_VALUE',
'apikey': 'YOUR_VALUE',
}
response = requests.get(url, params=params)
print(response.text)
JavaScript
const url = new URL('http://api.tinise.cn/api/hlxrw');
const params = {
'type': 'YOUR_VALUE',
'user': 'YOUR_VALUE',
'pass': 'YOUR_VALUE',
'apikey': 'YOUR_VALUE',
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
fetch(url)
.then(response => response.text())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));