I’ve seen quite a few apps that use OAuth but don’t ask the user for a pin/verifier after they log in with the browser. I want to use tweetsharp (https://github.com/danielcrenna/tweetsharp) for my WP7 app and the example they have in the documentation still asks for a verifier:
// Step 3 - Exchange the Request Token for an Access Token
string verifier = “123456”; // <-- This is input into your application by your user
OAuthAccessToken access = service.GetAccessToken(requestToken, verifier);
Any idea if (and how) authentication is possible using TweetSharp without the extra verifier?