这是邮递员输入的信息 网址-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
它返回以下响应: { “错误”:“ invalid_request”, “ error_description”:“缺少必填的Grant_type表单参数”, “代码”:38187, “ title”:“参数无效” }
答案 0 :(得分:1)
您可以在this blog article中找到Postman集合及其使用说明。
答案 1 :(得分:0)
这是一个post
请求。因此您应该以不同的类型传递这些parameters
。
例如,在python的requests
库中,它将位于您的data
中:
requests.post("{}/v1/security/oauth2/token".format(url), data=YOURPARAMETERS, headers=YOURHEADERS )