How to generate OAuth signature with c# for Twitter API 1.1?

北城以北 提交于 2019-12-06 03:51:04

You can either write your own OAuth provider or use an existing library. Here's a list of 3rd party libraries on the Twitter site:

https://dev.twitter.com/docs/twitter-libraries#dotnet

DotNetOpenAuth is good and there are others.

If you want to write your own, check out Twitter's OAuth documentation:

https://dev.twitter.com/docs/auth/oauth

and here's another good OAuth reference:

http://hueniverse.com/oauth/

The OAuth implementation does not change with the new (controversial) Twitter API. You can keep on generating OAuth signatures just like you did with Twitter API 1.0.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!