Does anyone have this working. What am I missing?
thanks,
Logan
You can add oauth parameters like oauth_verifier to OAMutableURLRequest (part of OAuthConsumer framework, not MPOAuth). This code is currently in a branch, not top of trunk. You can see how to use it in the test case named testOptionalOAuthParameters here:
Doug
> --
> You received this message because you are subscribed to the Google Groups "OAuth Objective-C" group.
> To post to this group, send email to oauth-ob...@googlegroups.com.
> To unsubscribe from this group, send email to oauth-objectiv...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/oauth-objective-c?hl=en.
>
Logan, there are two ways to do what you want. The first is to create a MPURLRequestParameter and manually ask the API to perform the URL request. The second way is to merely creating an NSURLRequest and pass that to MPOAuthAPI which will decompose the URLRequest and then put it back together after taking the necessary steps to add the oauth components to it.
Also, a patch has been submitted for MPOAuth to directly support oauthVerifier parameters, so soon you won't need to do any of the above.
_Karl