任何人都可以指向一个链接或一些代码示例(优选在C#中),它可以告诉我如何从桌面或移动应用程序使用Twitter API?
谢谢.
解决方法
out of band mode – Instead of providing a URL-based callback when acquiring a request token,“oob” is supplied. Once the user has given Twitter their account credentials,they are presented with a screen containing a PIN code and are asked to enter this code into the application. The application then sends this PIN as an oauth_verifier to the access token step to complete the exchange.
与普通网络流程相比,这在实践中意味着什么:
>在步骤(A)中,您的应用程序通过打开OAuth流的浏览器窗口来启动流程,但是发送oauth_callback = oob的请求参数而不是回调URL
>步骤(C)结束,Twitter显示包含用户PIN的授权结果页面(而不是使用正常的Web流程回调您的应用程序)
>步骤(D)要求用户将PIN从Twitter身份验证页面复制/输入到您的应用程序中(您的应用程序显然需要某种“等待授权代码...”屏幕:)
>步骤(E)您的应用程序将用户输入的PIN发送回oauth_verifier参数中的Twitter以获取访问令牌.
尝试使用DotNetOpenAuth http://www.dotnetopenauth.net/中的OAuthConsumerWpf示例,获取您应该能够修改的OAuth使用者代码示例.