What method do use if, once authenticated, I want to make a call to
the API and need to add parameters and sign the whole request?
It seems every time I make a request I have to sign the thing and
include the consumer key, access token, and, of course, signature.
How do I pass my request through the signing method?
Thanks,
Jason
On May 15, 5:29 pm, Greg Robbins <
grobb...@google.com> wrote:
> The authorizeRequest: method modifies the NSMutableURLRequest supplied to
> it, adding the appropriate
> Authorization header.
>
> For storage of authorization across runs of the app, see the discussion
> about saving to the keychain athttp://
code.google.com/p/gtm-oauth/wiki/GTMOAuthIntroductionand in the
> gtm-oauth sample application.