Sorry, but im kinda a newb regarding http post terminology!
I have to post to a webservice that cannot be changed: The format is as follows:
http://SomeWebAddress/JSON/GetAllFeedsRestfullyWrapped?userToken=FOO
so the parameters are:
key:userToken , value=FOO
In the body i need to put a JSON formatted array like this:
{"feedIds":[1,2,3,4,5,6]}
Im trying to accomplish this with AFNetworking but cannot seem to make it work for this situation.
I have tried both the AFHttpclient and AFJSONReqestIOperation but im not able to combine the request and body correct.
So i hope someone knows how to do this. Help is very much appreciated.