在邮递员中收到错误“Mandatory grant_type form parameter missing”
Posted
技术标签:
【中文标题】在邮递员中收到错误“Mandatory grant_type form parameter missing”【英文标题】:Getting the error "Mandatory grant_type form parameter missing" in postman 【发布时间】:2019-06-29 11:10:46 【问题描述】:这是在邮递员上输入的信息 网址 - https://test.api.amadeus.com/v1/security/oauth2/token 参数: grant_type - client_credentials client_secret - My_API_Secret_key client_id - My_API_key
标题 内容类型:application/x-www-form-urlencoded
它返回这个响应: “错误”:“无效请求”, "error_description": "缺少必需的 grant_type 表单参数", “代码”:38187, "title": "无效参数"
【问题讨论】:
【参考方案1】:这是一个post
请求。所以你应该在不同的类型下传递这些parameters
。
例如,在 python 的 requests
库中,它将位于您的 data
中:
requests.post("/v1/security/oauth2/token".format(url), data=YOURPARAMETERS, headers=YOURHEADERS )
【讨论】:
以上是关于在邮递员中收到错误“Mandatory grant_type form parameter missing”的主要内容,如果未能解决你的问题,请参考以下文章
为啥我在使用 Spring Boot Application 的邮递员中没有收到错误消息