OAuth PLAINTEXT 签名方法?

发布于 2024-12-20 17:27:43 字数 56 浏览 0 评论 0原文

一切都在标题中。我想使用 PLAINTEXT 作为我的 OAuth 实现的签名方法。有什么建议吗?

all is in the title. I want to use PLAINTEXT as signature-method for my OAuth implementation. Any suggestion?

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

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

发布评论

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

评论(2

云淡月浅 2024-12-27 17:27:43

当我使用 yahoo 进行 OAuth 工作时,我读过相关内容,这里是一个使用 yahoo 明文的示例请求,

https://api.login.yahoo.com/oauth/v2/get_token?oauth_consumer_key=key
  &oauth_signature_method=PLAINTEXT
  &oauth_version=1.0
  &oauth_verifier=svmhhd
  &oauth_token=gugucz&oauth_timestamp=1228169662
  &oauth_nonce=8B9SpF
  &oauth_signature=5f78507cf0acc38890cf5aa697210822e90c8b1c%261fa61b464613d0d32de80089fe099caf34c9dac5

这里是 Yahoo 的更多详细信息
使用纯文本的 Yahoo OAuth

如果我没记错的话 Google 不支持此

版本您想使用此明文的哪个 OAuth 服务?

i have read about it when i was working on OAuth using yahoo and here is a sample request using plaintext for yahoo

https://api.login.yahoo.com/oauth/v2/get_token?oauth_consumer_key=key
  &oauth_signature_method=PLAINTEXT
  &oauth_version=1.0
  &oauth_verifier=svmhhd
  &oauth_token=gugucz&oauth_timestamp=1228169662
  &oauth_nonce=8B9SpF
  &oauth_signature=5f78507cf0acc38890cf5aa697210822e90c8b1c%261fa61b464613d0d32de80089fe099caf34c9dac5

here are more details for Yahoo
Yahoo OAuth using PlainText

if i remember correctly Google does not support this version

with which OAuth service you want to use this PLAINTEXT?

一念一轮回 2024-12-27 17:27:43

如果您使用 Jersey OAuth 模块,您只需在您正在使用的 OAuthParameters 实例上调用signatureMethod("PLAINTEXT") 即可。但是您没有指出您正在使用哪些 OAuth 库,仅从标签中我猜测您正在使用 Jersey 并且您没有说明这是用于服务器还是客户端。因此,如果您想获得帮助,可能值得花时间将问题变得更具体一些。

If you are using the Jersey OAuth modules you can simply call signatureMethod("PLAINTEXT") on the OAuthParameters instance you are using. But you did not indicate what OAuth libraries you are using, only from tags I am guessing you are using Jersey and you don't say if this is for the server or the client side. So, if you want to get help, it may be worth the time to make the question a bit more specific.

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