0

我需要使用参数用户名和密码对https://example.com/api/login进行安全 POST。我正在尝试将 wslite 插件与 Grails 一起使用,但我无法弄清楚语法。我已经检查了 github 上的单元测试,但没有一个给我我需要的东西。也许我只是没有把这些点联系起来。

无论如何,有没有人有一个 POST 的多个参数的例子?谢谢!

4

1 回答 1

2

尝试以下示例发布您的请求。

def client = new RESTClient("https://example.com/api/login")
// for testing only!
client.httpClient.sslTrustAllCerts = true

def response = client.post() {
    charset "UTF-8"
    urlenc username: "test", password: "test" // here you can provide your params as a map
}
于 2013-01-07T11:10:17.557 回答