Example #1
0
 protected void SignInWithTwitter_Click(object sender, ImageClickEventArgs e)
 {
     OAuthTwitter oAuth = new OAuthTwitter();
     //Redirect the user to Twitter for authorization.
     //Using oauth_callback for local testing.
     Response.Redirect(oAuth.AuthorizationLinkGet());
 }