How can I avoid Twitter prompting to grant access to my application every time a user visits my site?

I am using Twitterizer which works great. I have a website (.NET 4, C #) where a user visits and signs ... I store tokens etc, everything works fine.

The question is, how can I ask the user to grant access to my app via twitter, since I already did it once the first time (and let the user already tweeted in another tab in my browser)?

+3


source to share


1 answer


Use http://api.twitter.com/oauth/authenticate?oauth_token=zyx

instead /oauth/authorize?oauth_token=xyz

.



Read more about Login with Twitter and GET oauth / authenticate .

+5


source







All Articles