这种的post请求要怎么写
抓包如下POST https://bancang.cn//api/pwdlogin HTTP/1.1
Host: bancang.cn
Connection: keep-alive
Content-Length: 37
sec-ch-ua: "Chromium";v="106", "Google Chrome";v="106", "Not;A=Brand";v="99"
sec-ch-ua-platform: "Windows"
sec-ch-ua-mobile: ?0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36
content-type: application/x-www-form-urlencoded
Accept: */*
Origin: https://bancang.cn
Sec-Fetch-Site: same-origin
Sec-Fetch-Mode: cors
Sec-Fetch-Dest: empty
Referer: https://bancang.cn/
Accept-Encoding: gzip, deflate, br
Accept-Language: zh-CN,zh;q=0.9
mobile=18888888888&password=qwe123456
像这种的post请求要咋写,百度折腾了一两个小时,没弄懂,来请教一下{:10_266:}
你的目标是什么 本帖最后由 xyh2695368537 于 2022-10-29 18:54 编辑
suchocolate 发表于 2022-10-29 18:39
你的目标是什么
服务器返回是这个,想拿到token
HTTP/1.1 200 OK
Server: Tengine
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
Date: Sat, 29 Oct 2022 10:52:15 GMT
Vary: Accept-Encoding
Access-Control-Allow-Origin: *
Ali-Swift-Global-Savetime: 1667040735
Via: cache63.l2cn3055, cache63.l2cn3055, kunlun3.cn1329, kunlun3.cn1329
X-Cache: MISS TCP_MISS dirn:-2:-2
X-Swift-SaveTime: Sat, 29 Oct 2022 10:52:15 GMT
X-Swift-CacheTime: 0
Timing-Allow-Origin: *
EagleId: 75a90c8716670407351234652e
Content-Length: 106
{"errcode":0,"token":"4d8fd412c7759646b2a1306b3","uid":22563,"nickname":"\u5c71\u6d77\u6cfd\u3001"} xyh2695368537 发表于 2022-10-29 18:47
服务器返回是这个,想拿到token
这只是过程
问你目标是什么 suchocolate 发表于 2022-10-29 19:02
这只是过程
问你目标是什么
实现自动抢购商品 xyh2695368537 发表于 2022-10-29 19:09
实现自动抢购商品
#!/usr/bin/env python3
import requests
def main():
url = 'http://bancang.cn//api/pwdlogin'
headers = {'user-agent': 'Mozilla'}
data = {'mobile': 'your phone number', 'password': 'your password'}
r = requests.post(url, data=data, headers=headers)
print(r.status_code, r.headers, r.text)
if __name__ == "__main__":
main()
suchocolate 发表于 2022-10-29 20:47
感谢!!!原来这么简单{:10_284:} xyh2695368537 发表于 2022-10-29 21:27
感谢!!!原来这么简单
浏览器f12,网络,然后手工登陆一下,就知道具体要提交的数据了。 suchocolate 发表于 2022-10-29 21:44
浏览器f12,网络,然后手工登陆一下,就知道具体要提交的数据了。
okok,学到了!!!{:10_298:}
页:
[1]