说明
返回84的发包数据
请求地址(post/json)
这两个都可以试试
https://akm.sakura-luo.top/84_ck?token=xxxx
请求参数
请求示例
{
"url_84": "https://www.volaris.com/Germand-and-haue-lent-Layest-Lord-former-Guill-m?d=www.volaris.com",
"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
}
返回示例
[{'performance': {'interrogation': 610}, 'solution': {'interrogation': {'p': 'fyVjHNy1RVt7gzWx/+gy0/ewXCJCWhYeJf58Nh0ubQKBb/NmAK7EN8k00=', 'st': 1713944887, 'og': 1, 'sr': 2396141095, 'cr': 725519852}, 'version': 'beta'}, 'old_token': None, 'error': None}, "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"]
示例代码
import requests
url_84 = "https://www.volaris.com/Germand-and-haue-lent-Layest-Lord-former-Guill-m?d=www.volaris.com"
ua = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
resp = requests.post("https://akm.sakura-luo.top/84_ck?token=xxxx", json={
"url_84": url_84,
"ua": ua
})
data, ua = resp.json()
headers = {
'accept': 'application/json; charset=utf-8',
'accept-language': 'zh-CN,zh;q=0.9,en-GB;q=0.8,en-US;q=0.7,en;q=0.6',
'cache-control': 'no-cache',
'content-type': 'text/plain; charset=utf-8',
'user-agent': ua
}
response = requests.post(
url=url_84,
headers=headers,
json=data
)
re84 = response.json()["token"]
print(re84)