I'm using the OAuthConsumer in my iOS application which makes use of the Tumblr API. Making API-Calls in general works fine. However, I struggle to upload any media. When all the parameters of my requests are ints or strings, I add them just like that:
[request setParameters:[NSArray arrayWithObjects:
[OARequestParameter requestParameterWithName:@"x_auth_username" value:username],
[OARequestParameter requestParameterWithName:@"x_auth_password" value:password],
nil]];
That obviously won't work for e.g. images.
I figured out that I probably will have to send this data as multipart/form-data instead of application/x-www-form-urlencoded and therefore, it won't have any effect on the oAuth signature. However, as far as I can tell, the OAuthConsumer only supports x-www-form-urlencoded (with the relevant code lying in the NSMutableURLRequest+Parameters.m). However, I'm not sure whether this is correct and, if so, I don't really know how to modify the Consumer correctly. Any help would be appreciated!