POST-запрос получает код ошибки 400 с pydev Eclipse, но работает на Postman - PullRequest
0 голосов
/ 28 июня 2018

Я пытаюсь вызвать почтовый запрос, который работает на Почтальоне, но возвращает 400 с моим кодом. Вот мои попытки:

url = "http://192.168.9.194:7780/xtv-ws-client/api/login/auth? 
accountid=342&password=3534"
headers = {"Content-Type": "application/x-www-form-urlencoded"}
rsp = requests.post(url, headers=headers)
print (rsp.status_code)

и

url = "http://192.168.9.194:7780/xtv-ws-client/api/login/auth"
Body1 = {
    "accountid": "342",
    "password": "3534"
}
headers = {"Content-Type": "application/x-www-form-urlencoded"}
rsp = requests.post(url, json=Body1, headers=headers)
print (rsp.status_code)

и

params = {'accountid': '342', 'password': '3534'}
url = "http://192.168.9.194:7780/xtv-ws-client/api/login/auth? 
accountid=342&password=3534"
headers = {"Content-Type": "application/x-www-form-urlencoded"}
rsp = requests.post(url, headers=headers, params = params)
print (rsp.status_code)

Вот моя просьба почтальона: enter image description here

1 Ответ

0 голосов
/ 28 июня 2018
params = {'accountid': '342', 'password': '3534'}
url = "http://192.168.9.194:7780/xtv-ws-client/api/login/auth"
rsp = requests.post(url, data=params)
print (rsp.status_code)
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...