python请求未经身份验证或出现错误401

时间:2019-03-11 21:15:52

标签: python-3.x python-requests

我正在尝试向我的Web服务器发布通知,但显示错误401。 我已经在邮递员中测试了我的API密钥,并且可以正常工作,但是当我在python中使用它时,它显示错误401或error:unententicated。

这是我的代码

import requests

req = requests.post('https://sampleweb.com/api/v1/devices/1/notifications', 
    json={ 'Authorization': 'Bearer eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9',
    "notification": { "message":"hey", "level": 4}})

print(req.json())

file = open("alert_content.txt", "a") 
file.write(req.text + "\n")
file.close()

0 个答案:

没有答案