views:

709

answers:

2

We are developing an asp.net 2.0 web application in that user can sign-up or sign-in using twitter account.

when the user click on the twitter button, it should take you to the twitter login page. after your login is successful twitter should able to forward me back to my page webpage.

Please let me know.

eg. twitter

+12  A: 

For this you use Twitter's OAuth authentication framework. It's used so that users don't have to directly enter their user + password into your site. (I assume you know how the front-end to that works already.)

You can use this little example to use OAuth from .NET - it is built for ASP.NET. (The demo the guy provides is My Tweeple.)

Lucas Jones
This is more kind of a user updating status to his twitter account using oAuth. But i am trying to implement like a facbook connect.for eg. to to friendfeed.com and click on the twitter button.
vamsivanka
OAuth is used to do that. http://apiwiki.twitter.com/Sign-in-with-Twitter
ceejayoz
+3  A: 

Twitter actually includes instructions for using OAuth to make a Facebook Connect-style system.

ceejayoz