I discovered the answer.

Currently with twitter you do not to send an oauth_verifier (if it is
a web call). So you can just change the signature of the call


//Generate Signature
            string sig = this.GenerateSignature(uri,
                this.ConsumerKey,
                this.ConsumerSecret,
                this.OToken,
                this.OTokenSecret,
                this.CallBackUrl,
                null,                 <--- put a null here
                method.ToString(),
                timeStamp,
                nonce,
                out outUrl,
                out querystring);


This is using Shannon Whitley's code sample for twitter Oauth




On Nov 2, 12:34 pm, p capozzi <p...@globalxpres.com> wrote:
> Twitter has the capability to bypass the authorization screen if you
> are posted to one account. They give you an oauth_token and a
> oauth_token_secret. You should be able then to post directly to the
> twitter account but you still need the oauth_verifier.
>
> Does anyone have any ideas on how to get an oauth_verifier without
> resorting to the Twitter authorization screen round trip?

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk

Reply via email to