21

I am trying to implement tweetsharp in my asp.net mvc 3 application but I am running into issues.

I have created a new twitter application with the following settings:

I then used the sample provided on their website with a few minor changes:

public ActionResult Twitter()
{
    TwitterService service = new TwitterService("key", "secret");
    OAuthRequestToken requestToken = service.GetRequestToken("http://127.0.0.1:8545/Membership/TwitterOAuth");

    var uri = service.GetAuthorizationUri(requestToken);

    return new RedirectResult(uri.ToString(), false /*permanent*/);
}

public ActionResult TwitterOAuth(string oauth_token, string oauth_verifier)
{
    var requestToken = new OAuthRequestToken { Token = oauth_token };

    TwitterService service = new TwitterService("key", "secret");
    OAuthAccessToken accessToken = service.GetAccessToken(requestToken, oauth_verifier);

    service.AuthenticateWith(accessToken.Token, accessToken.TokenSecret);
    TwitterUser user = service.VerifyCredentials();

    return RedirectToAction("Index", "Home");
}

Whenever I runt his code I get redirected to the following twitter URL: https://api.twitter.com/oauth/authorize?oauth_token=?

Anyone experienced this before?


EDIT

It appears that issue was with the way the application was setup. Since I did not provide a callback url, the application was automatically saved as a client and not browser application. Once I added a callback url the code worked correctly.

Thomas
  • 5,888
  • 7
  • 44
  • 83
  • 16
    You should create an answer to your own question instead of the edit. This helped me out a lot and it would be good if it was posted as an accepted answer so people see it quickly. – Per Kastman May 28 '12 at 09:25
  • Did you register your application to twitter? – ADIMO Dec 05 '12 at 10:55

1 Answers1

5

It appears that issue was with the way the application was setup. Since you did not provide a callback url, the application was automatically saved as a client and not browser application. Once you added a callback url the code worked correctly.

[From you own question text]

Kees C. Bakker
  • 32,294
  • 27
  • 115
  • 203