如何将 RestSharp 与 OAuth 结合使用?

发布于 2024-11-11 15:51:26 字数 454 浏览 1 评论 0原文

我很困惑应该使用哪个工厂 OAuth1Authenticator 工厂方法。我想我应该获取一个消费者秘密令牌(我可以用 RestSharp 获取它吗?),然后使用 OAuth1Authenticator.ForRequestToken,然后获取访问令牌和秘密访问令牌(如何?),然后使用 OAuth1Authenticator.ForAccessToken 并使用此返回值指向前方。

但似乎 RestSharp 的架构是使用唯一的身份验证器,我似乎无法找到一种从冷启动(只有应用程序令牌)到拥有所有必要的凭据(消费者密钥和秘密、访问密钥和秘密)的方法。

附加问题:

  1. .ForClientAuthentication 和 .ForProtectedResource 方法的用途是什么?
  2. 为什么 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:

  1. What .ForClientAuthentication and .ForProtectedResource methods are for?
  2. Why OAuth2Authenticatior is in a different namespace from OAuth1Authenticator?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾忌 2024-11-18 15:51:26

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文