提问人:Volodymyr Lytvyn 提问时间:11/17/2023 最后编辑:Volodymyr Lytvyn 更新时间:11/17/2023 访问量:26
CURL 调用可以没有“--request”参数吗?
Could a CURL call has no '--request' param?
问:
以下两个请求有什么区别。
第二个没有“--request”参数,这是什么意思? 第一次调用返回身份验证令牌,第二次调用返回具有特定 id 的对象的元数据
curl --location --request POST 'https://****.azure-api.net/test/mosaic/token' \
--header 'Content-Type: application/json' \
--header 'Content-Length: 1024' \
--header 'grant_type: client_credentials' \
--header 'client_secret: ***' \
--header 'scope: bpm-portal' \
--header 'client_id: b82346bc-05f6-46ef-a1df-8fe0eaa420b8' \
--header 'Ocp-Apim-Subscription-Key: *****'
curl --location 'https://**.azure-api.net/test/mosaicId/SearchMosaicById?id=RLA217545' \
--header 'Content-Type: application/json' \
--header 'Content-Length: 1024' \
--header 'grant_type: client_credentials' \
--header 'client_secret: ****' \
--header 'scope: bpm-portal' \
--header 'client_id: b82346bc-05f6-46ef-a1df-8fe0eaa420b8' \
--header 'Ocp-Apim-Subscription-Key: *****' \
--header 'Authorization: Bearer "*****' \
--header 'Accept: application/xml'
我在 Postman 中对此进行了测试。 第一次调用正常,但第二次调用失败“HTTP 错误 400。请求动词无效。应该使用哪种类型的请求?
答:
-1赞
Volodymyr Lytvyn
11/17/2023
#1
不能是无类型
不带此参数的语法表示 GET 类型
评论