POST with HTTPBuilder -> NullPointerException?

后端 未结 3 1950
终归单人心
终归单人心 2021-01-04 22:18

I\'m trying to make a simple HTTP POST request, and I have no idea why the following is failing. I tried following the examples here, and I don\'t see where I\'m going wrong

3条回答
  •  佛祖请我去吃肉
    2021-01-04 22:49

    I've found it's necessary to set the content type before assigning the body. This works for me, using groovy 1.7.2:

    @Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.5.0' )
    import groovyx.net.http.*
    import static groovyx.net.http.ContentType.*
    import static groovyx.net.http.Method.*
    
    def List search(String query, int maxResults)
    {
        def http = new HTTPBuilder("mywebsite")
    
        http.request(POST) {
            uri.path = '/search/'
            requestContentType = URLENC
            headers.'User-Agent' = 'Mozilla/5.0 Ubuntu/8.10 Firefox/3.0.4'
            body = [string1: "", query: "test"]
    
            response.success = { resp, InputStreamReader reader ->
                assert resp.statusLine.statusCode == 200
    
                String data = reader.readLines().join()
    
                println data
            }
        }
        []
    }
    

提交回复
热议问题