OAuth 与 Twitter
我下载了 tweetsharp 和 twitterizer,但无法使其工作。我使用以下基本示例尝试 tweetsharp,
TwitterService Service = new TwitterService(consumerKeyTw, consumerSecretTW);
OAuthRequestToken requestToken = Service.GetRequestToken("http://localhost:1470/Twitterr/OAuth"); // <-- callback URL
但总是得到错误的令牌。我还尝试了 twitterizer,它附带了一个简单的示例。我复制并粘贴密钥。但我也再也没有拿回令牌。
我尝试使用 tweetsharp 删除 url 回调,结果成功了!但当然 Twitter 没有转到我的回调 URL。 在 dev.twitter 上,我为注册回调 URL 设置了上述 url。但我仍然没有得到令牌。
有什么想法吗?我缺少什么?您知道有什么方法可以使用本地主机调试和测试我的代码吗? 谢谢!
I download tweetsharp and twitterizer and I can not make it work. I try tweetsharp with the basic following sample
TwitterService Service = new TwitterService(consumerKeyTw, consumerSecretTW);
OAuthRequestToken requestToken = Service.GetRequestToken("http://localhost:1470/Twitterr/OAuth"); // <-- callback URL
I always get a false Token. I also try twitterizer, which came with a simple example. I copy and paste the keys. But I also never get back the token.
I try with tweetsharp deleting the url callback and it worked! But off course twitter didn't go to my callback url.
On dev.twitter I setup for Registered Callback URL the above url. But I still don't get the token.
Any Idea? What I'am missing? Do you know any way to debug and test my code with a localhost?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这里回答:远程服务器返回错误:(401 )未经授权。 Twitter oAuth
Answered here: The remote server returned an error: (401) Unauthorized. Twitter oAuth
最有可能的原因是“localhost”从 Twitter 的角度来看没有指向您的网络服务器。
Most probably it's because of "localhost" not pointing to your webserver from twitters point of view.