我有一个 Http 端点公开为 http://localhost:8080/test/api/v1/qc/{id} 用于删除,在进行此 API 删除调用时我必须用正确的 ID 替换我尝试使用 python 的 requests 模块以下面的方式param = { "id" : 1}requests.delete(url = http://localhost:8080/test/api/v1/qc/{id}, params=param)此 API 调用因错误而中断ValueError: No JSON object could be decoded.我怎样才能做到这一点?
1 回答
LEATH
TA贡献1936条经验 获得超6个赞
您的代码无法按原样运行。您需要引用您的网址字符串:
url = "http://localhost:8080/test/api/v1/qc/{id}"
阅读requests 的文档,params
只发送字典param
作为查询字符串,所以它只会附加?id=1
到 URL 的末尾。
你想要的是{id}
从字典中获取值。您可以通过多种方式查看此答案:How do I format a string using a dictionary in python-3.x?
你想要类似的东西
requests.delete(url = "http://localhost:8080/test/api/v1/qc/{id}".format(**param))
添加回答
举报
0/150
提交
取消