Python 中的 warningsAccepted=true 标头参数
我正在使用一个 api,它会给出一些与 api 相关的警告。 为了绕过 api 警告,我尝试在 url 标头中使用“ warningsAccepted=True”。 我已经尝试过下面的代码。 但是,这并没有解决我的问题。您能帮我解决问题吗?
url="https://example.com"
headers = {
'Authorization': 'bearer %s' %bearer_token,
'Content-Type': 'application/ld+json',
'warning-accepted': True
}
response = requests.request("POST", url, headers=headers)
错误信息:
InvalidHeader: Value for header {warningsAccepted: True} must be of type str or bytes, not <class 'bool'>
I am using an api, where it give some of the api related warning.
To bypass the api warnings, I am trying to use " warningsAccepted=True" in the url header.
I have tried below code.
However, this did not fix my issue. Could you please help me to fix issue.
url="https://example.com"
headers = {
'Authorization': 'bearer %s' %bearer_token,
'Content-Type': 'application/ld+json',
'warning-accepted': True
}
response = requests.request("POST", url, headers=headers)
error message:
InvalidHeader: Value for header {warningsAccepted: True} must be of type str or bytes, not <class 'bool'>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
'warning-accepted': 'True'
。Try
'warning-accepted': 'True'
.