猿问

带有 URL 路径变量的 Python http 删除请求

我有一个 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.

我怎样才能做到这一点?


呼啦一阵风
浏览 71回答 1
1回答

LEATH

您的代码无法按原样运行。您需要引用您的网址字符串: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))
随时随地看视频慕课网APP

相关分类

Python
我要回答