有人使用 DNOA 实施 2 Legged OAuth 吗?
我正在尝试在 CSharp 中创建一个身份验证模块,其中我需要使用 DotNetOpenAuth(DNOA) 库验证来自请求的签名,该库仅具有消费者密钥和秘密。
如果您有任何使用 DNOA 实现 2 Legged OAuth 的示例,那将会很有帮助。 如果没有,任何关于如何实施的想法也可以。 任何帮助将不胜感激。
I am trying to create an Authentication Module in CSharp where I need to verify the Signature from the request using DotNetOpenAuth(DNOA) Library for 2 Legged OAuth which only has consumer Key and a Secret.
If you have any sample implementation of 2 Legged OAuth using DNOA that would be helpful.
If not, any ideas on how to implement would work too.
Any help would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我无法让 DNOA 与 2-legged OAuth 一起使用,所以我最终使用 http://oauth.googlecode.com/svn/code/csharp/OAuthBase.cs 作为我处理签名的基类。您需要做的就是对其进行子类化并使用签名方法来构建 http 授权标头...
一旦获得授权标头,只需构建您的 Web 请求并发送它...
更新:
我还能够用两条腿与 devdefine 的 oauth 消费者一起工作。 http://code.google.com/p/devdefine-tools/wiki/OAuthConsumer
如果它有一个空的构造函数或一个仅接受上下文的重载,那就太好了,但这似乎可行。
I wasn't able to get DNOA to work with 2-legged OAuth so I ended up making my own consumer using http://oauth.googlecode.com/svn/code/csharp/OAuthBase.cs as my base class to handle the signature signing. All you need to do is subclass it and use the signature methods to build the http authorization header...
Once you have the authorization header just build your web request and send it...
Update:
I was also able to get 2-legged to work with devdefined's oauth consumer. http://code.google.com/p/devdefined-tools/wiki/OAuthConsumer
It would be nice if it had an empty constructor or an overload that just takes in the context, but this seems to work.