Reputation: 13367
I want to use linqToTwitter library to create my own twitter client. How can i make autorization using login and password? Examples provide information how to make autorization throught OAuth (consumer key, secret key etc) but it is not good in my case.
Upvotes: 1
Views: 249
Reputation: 2319
According to the related Twitter Developer page Basic Authentification has been disabled at the end of August 2010. The only way to make authenticated calls to Twitter is using OAuth since then. (And yes, I partly agree that it would be great if simple username/password authentification via Basic Auth would be possible.)
Upvotes: 3
Reputation: 434
possible, it is what you want http://blog.stevienova.com/2008/04/19/oauth-getting-started-with-oauth-in-c-net/
Upvotes: 0