grails-plugins / grails-rest-client-builder

REST client plugin that uses Spring's RestTemplate
http://grails.org/plugin/rest-client-builder
Apache License 2.0
65 stars 32 forks source link

Downloading pdf from web service #50

Open prabhug1987 opened 6 years ago

prabhug1987 commented 6 years ago

Hi,

I am using this plugin for getting details from web service. It is working for web service but I couldn't get the file attachment from it.

def attachRead = rest.get('url') { contentType "application/pdf" }

        def bodyText = attachRead.body.toString()

Please help me or let me know how to convert this to stream or file.