如何将 RestSharp 与 OAuth 结合使用?
我很困惑应该使用哪个工厂 OAuth1Authenticator 工厂方法。我想我应该获取一个消费者秘密令牌(我可以用 RestSharp 获取它吗?),然后使用 OAuth1Authenticator.ForRequestToken,然后获取访问令牌和秘密访问令牌(如何?),然后使用 OAuth1Authenticator.ForAccessToken 并使用此返回值指向前方。
但似乎 RestSharp 的架构是使用唯一的身份验证器,我似乎无法找到一种从冷启动(只有应用程序令牌)到拥有所有必要的凭据(消费者密钥和秘密、访问密钥和秘密)的方法。
附加问题:
- .ForClientAuthentication 和 .ForProtectedResource 方法的用途是什么?
- 为什么 OAuth2Authenticatior 与 OAuth1Authenticator 位于不同的命名空间中?
I am confused which factory OAuth1Authenticator factory method should I use. I think I should get a consumer secret token (can I get it with RestSharp?), then use OAuth1Authenticator.ForRequestToken, then obtain access token and secret access token(how?), then use OAuth1Authenticator.ForAccessToken and use the return value from this point forward.
But it seems that RestSharp is architectured to use the only one authenticator and I can't seem to find a way from a cold start (having only app token) to having all the necessary credentials (consumer key and secret, access key and secret).
Bonus questions:
- What .ForClientAuthentication and .ForProtectedResource methods are for?
- Why OAuth2Authenticatior is in a different namespace from OAuth1Authenticator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OAuth 1 是多步骤的,因此您必须在每个步骤中使用不同的静态方法。这里有一个例子: https://github.com /restsharp/RestSharp/blob/master/test/RestSharp.IntegrationTests/OAuth1Tests.cs
OAuth 1 is multi-step, so you have to use a different static method each step of the way. There's an example here: https://github.com/restsharp/RestSharp/blob/master/test/RestSharp.IntegrationTests/OAuth1Tests.cs