我正在尝试使用twitterizer工作twitter oAuth,但我不能.
我收到以下错误:
远程服务器返回错误:(401)未授权.
当我的回叫url是一个本地主机.
如果我的回调url是oob,对于引脚流,它可以正常工作.
这是我的代码:
public ActionResult logon(string returnUrl,bool? perm) { string consumerKeyTw = @"UF3F72XqfGShQs7juKMApA"; string consumerSecretTW = "secret"; OAuthTokenResponse requestToken = OAuthUtility.GetRequestToken(consumerKeyTw,consumerSecretTW,"http://localhost:58892/Twitterr/OAuth"); // Direct or instruct the user to the following address: Uri authorizationUri = OAuthUtility.BuildAuthorizationUri(requestToken.Token); return new RedirectResult(authorizationUri.ToString(),false); }
当我设置回调网址时,我从来没有得到令牌.在twitter上我注册我的回调url localhost.
我失踪了吗?
任何想法发生了什么?
解决方法
确保您的应用程序设置为
development portal上的Web应用程序.对于回调地址,请确保使用不正确的地址(如应用程序的主页),然后在运行时指定实际地址.
Web应用程序可以使用基于引脚的身份验证,但桌面应用程序无法使用Web流程.