1

我项目中的某些 API 只能使用编码格式通过 OAuth 2.0 访问。我可以使用 POSTMAN 手动提交 POST,因为它具有 x-www-form-urlencoded 功能来发送请求(附图片)。作为一种解决方法,我创建了一个 java 函数来将我的 json 主体转换为编码的 URI 并作为变量传递。但是,我在运行它时收到“http 调用 URL 失败”。我想知道空手道是否有自己的库来将 json 转换为编码的 URI。

场景:Json 到 POST 正文上的编码 URI

* def JavaDemo = Java.type('com.ge.health.gam.service.servicerequest.testsuite.CustomJavaClass')
* def encodedURI = JavaDemo.jsonToURI()
* print encodedURI

Given url 'http://location.ver02.geicenter.com/uaa/oauth/token'
And request encodedURI
When method post
Then status 200

com.intuit.karate.exception.KarateException:http 调用在 263 毫秒后失败,网址为:http: //location.ver02.geicenter.com/uaa/oauth/token在此处输入图像描述

4

2 回答 2

1

根据 Peter Thomas 的建议,我发现以下内容可以通过 Oath 2.0 提交请求。就我而言,我还必须安装所需的证书才能收到有效的响应。您还必须考虑到这一点。

Given path 'uaa', 'oauth', 'token'
And form field key = 'value'
And form field key = 'value'
And form field key = 'value'
And form field key = 'value'
When method post
Then status 200 
于 2017-09-26T18:18:28.327 回答
1

是的。请参阅文档以获取form field. 演示中还有一个 OAuth 2 示例,请查找。

另见:https ://stackoverflow.com/a/58643689/143475

于 2017-09-21T00:47:31.087 回答