我正在尝试向我的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()