I am using RestKit 0.23.3.
For a particular path pattern (say download_data/:dataId
):
- I can send a request via RestKit without any problem,
- I expect a response with arbitrary Content Type (
image/png
,text/plain
,text/xml
,... or evenapplication/json
), - If 2xx status code is returned by the server, I want to receive the body of HTTP response as NSData instance (regardless of Content Type) in the success handler block.
Is this possible (and how) using RestKit?
Thanks.
With new restkit 0.20.3 you can execute your rest web-service like:
By mapping you will get your object directly from mappingarray. For parsing raw data you have get json object from response string.
rkomForProbeList is your RKObjectManager's instance. kResource_Probe is resource path. Like if base URL is http://www.hi.com/ and your rest api required http://www.hi.com/login then "login" will be your resource path.