OAuth PLAINTEXT 签名方法?
一切都在标题中。我想使用 PLAINTEXT 作为我的 OAuth 实现的签名方法。有什么建议吗?
all is in the title. I want to use PLAINTEXT as signature-method for my OAuth implementation. Any suggestion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当我使用 yahoo 进行 OAuth 工作时,我读过相关内容,这里是一个使用 yahoo 明文的示例请求,
这里是 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
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?
如果您使用 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.