I\'m trying to make an app that accesses a user\'s Google Calendar using OAuth. I have the code in place that gets all of the proper tokens and they are saved into some preferen
The Authorization header needs to be "Authorization: OAuth oauth_nonce="deadbeefdeadbeef" oauth_version="1.0" ....
See http://code.google.com/apis/accounts/docs/OAuth_ref.html#RequestToken. You can, supposedly, also but the authorization parameters in the querystring or in the body of a POST, but I have not attempted that.