在 Rails 3 / devise 中使用请求标头中的 auth_token 而不是 POST/PUT 参数
我需要在 Rails 3.1 API 中与最新版本的设计结合使用基于令牌的身份验证。到目前为止没有问题。
现在我不想将我的 :auth_token 附加到客户端的 POST/PUT 参数,而是将此令牌作为请求标头发送,如 HTTP_X_MYAPP_AUTH_TOKEN"。
我可以说服设计使用它而不是参数中的令牌吗?是否可以实现 ,以便我的 API 用户可以通过请求标头或 POST/PUT 参数发送令牌?
两者
I need to use token based authentication in a Rails 3.1 API in conjunction with the most recent version of devise. No problem so far.
Now I do not want to append my :auth_token to the POST/PUT parameters on client side but send this token as a request header like HTTP_X_MYAPP_AUTH_TOKEN".
Can I convince devise from using that rather than a token from parameters? Is it possible to implement both, so that my API users can send the token via request header OR POST/PUT parameter?
Regards. Felix
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我有同样的需求并提出了这个解决方案:
请注意,我将我的设备
Devise.token_authentication_key
设置为api_key
。I had the same need and came up with this solution:
Note I have my devise
Devise.token_authentication_key
set toapi_key
.我为此使用自定义“策略”: https://gist.github.com/4492569
I'm using a custom "strategy" for this: https://gist.github.com/4492569
在 Devise 中,可以通过查询字符串或 HTTP 基本身份验证的标头传递标准身份验证令牌,请参阅 此处。规范中用于在 HTTP_Authorization 标头中传递令牌的 Ruby 代码是
使用curl 从命令行进行测试,如下所示:
It is possible in Devise to pass a standard authentication token through query string or the header for HTTP Basic Authentication, see here. The Ruby code from the specs to pass token in the HTTP_Authorization header is
Testing from the command line with curl would go like this:
使用 devise 和 devise-token_authenticatable,我必须在 config/initializers/devise.rb 中进行设置,以便通过 http 标头传递令牌:
config.http_authenticatable = true
Using devise and devise-token_authenticatable, I had to set this in my config/initializers/devise.rb in order to pass the token via http headers:
config.http_authenticatable = true