推特授权
我想使用 linqToTwitter 库创建我自己的 Twitter 客户端。如何使用登录名和密码进行授权?示例提供了如何通过 OAuth(消费者密钥、秘密密钥等)进行授权的信息,但在我的情况下它并不好。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据相关的 Twitter 开发者页面,基本身份验证已于 2010 年 8 月底被禁用。从那时起,对 Twitter 进行身份验证调用的方法就是使用 OAuth。 (是的,我部分同意,如果可以通过基本身份验证进行简单的用户名/密码身份验证,那就太好了。)
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.)
可能,这就是你想要的
http://blog. stevienova.com/2008/04/19/oauth-getting-started-with-oauth-in-c-net/
possible, it is what you want
http://blog.stevienova.com/2008/04/19/oauth-getting-started-with-oauth-in-c-net/