ezraza wrote:
The user will need to authenticate with Twitter using oAuth 1.0a - the process is something like:
WebForms example: https://tweetinvi.codeplex.com/discussions/536895
If you do not want to use the standard Twitter web interface in your app, I am sure there is some way you can code your own login page, but the request flow will have to involve some of the steps above. Hopefully the examples above will give you some idea of what's involved.
See http://oauth.net/core/1.0/#anchor9 for more info.
I have used that to allow my applications to be registered with twitter, I just must be missing some obvious when it comes to using it for user log in.Having literally just written the code for this for a web application, here is some information..
I want users to be able to just enter their username and password to log in.
The user will need to authenticate with Twitter using oAuth 1.0a - the process is something like:
- User presses "Sign in with Twitter" button
- User is taken to Twitter authentication page where they sign in
- User is returned to the callback URL specified on the app's settings page
-
Application receives user's credentials which can be used to perform various actions (i.e. get the user's profile details, perform actions as that user etc)
WebForms example: https://tweetinvi.codeplex.com/discussions/536895
If you do not want to use the standard Twitter web interface in your app, I am sure there is some way you can code your own login page, but the request flow will have to involve some of the steps above. Hopefully the examples above will give you some idea of what's involved.
See http://oauth.net/core/1.0/#anchor9 for more info.