gpt4 book ai didi

python - 如何发出带有特定参数的post请求

转载 作者:行者123 更新时间:2023-12-01 00:06:54 24 4
gpt4 key购买 nike

是否可以从此site访问原始数据使用 python 请求?

在网络选项卡中,我发现 getAllDeclaration 项具有 POST 方法并指定请求负载参数。

到目前为止我已经尝试过:

url = "https://cab.vkksu.gov.ua/rest/qa2_resultLatest/"
payload = {"PIB": "Іванов Іван Іванович", "docTypeID": "3000000768001", "yearString": "2018", "pageNum": 0}
# `docTypeID` I got from https://cab.vkksu.gov.ua/rest/qa2_interview/getInterviewType"
requests.post(url, payload)
# results in 400 response code

最佳答案

尝试下面的代码,很确定你弄乱了 url 部分。

import requests

url = "https://cab.vkksu.gov.ua/rest/qa2_resultLatest/getAllDeclaration"
data = {
"PIB": "Іванов Іван Іванович",
"docTypeID": "3000000768001",
"yearString": "2018",
"pageNum": 0
}
response = requests.post(url, json=data)

print(response.json())

关于python - 如何发出带有特定参数的post请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59916742/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com