大家好!我需要登录并从站点获取令牌
在 curl 我提出如下请求: curl -X POST https://v2.name.ru/api/ -H 'Content-Type: application/x-www-form-urlencoded' -H 'Authorization: Basic 1c1C1ccc111CCCcc1c1c' - d 数据 =%3D%7B%22email%22%3A%22myemail%40domain.ru%22%2C%22password%22%3A%22mypassword%22%7D
它有效,作为回应,我得到了包含所有数据的 json
但我需要在 python 中获取令牌我尝试以下操作:
import requests
url = 'https://v2.name.ru/api/'
data={
'email':'myemail@domain.ru',
'password':'mypassword'
}
headers={
'Content-Type': 'application/x-www-form-urlencoded',
'Authorization': 'Basic 1c1C1ccc111CCCcc1c1c',
}
response = requests.post(url, headers=headers, data=data)
response
我收到回复 400 - 无效电子邮件(同时从正在处理请求的终端复制粘贴)
谢谢您的帮助
1 个回答