尝试更新 datadog 仪表板时放置请求获取 404 状态
r2 = requests.put('https://app.datadoghq.com/dashboard/{dashboardID}', data=dataset)
print(r2)
--->> <Response [404]>
我想我需要添加某种身份识别用户/通行证,api_key/app_key,对吗?我不确定如何将正文添加到请求中。有人可以简要解释一下并分享一些 put()
调用的标识和正文示例吗?
当尝试使用 get()
调用时,它可以工作并以 [200]
状态响应:
r3 = requests.get("https://app.datadoghq.com/dashboard/{dashboardID}")
print(r3)
--->> <Response [200]>
r2 = requests.put('https://app.datadoghq.com/dashboard/{dashboardID}', data=dataset)
print(r2)
--->> <Response [404]>
I think I need to add some kind of identification user/pass, api_key/app_key, right? I am not sure how I am adding the body into the requests. Can somebody explain briefly about it and share some examples of identification and body of the put()
call?
when trying to use the get()
call it works and responds with a [200]
status:
r3 = requests.get("https://app.datadoghq.com/dashboard/{dashboardID}")
print(r3)
--->> <Response [200]>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要输入 api 密钥/应用程序密钥。
你可以尝试
You need to put in the api key/app key.
You might try