Rails 身份驗證使用 http 令牌進行身份驗證
authenticate_with_http_token do |token, options|
@user = User.find_by(auth_token: token)
end
你可以通過發出類似請求來測試此端點與 curl
curl -IH "Authorization: Token token=my-token" http://localhost:3000
authenticate_with_http_token do |token, options|
@user = User.find_by(auth_token: token)
end
你可以通過發出類似請求來測試此端點與 curl
curl -IH "Authorization: Token token=my-token" http://localhost:3000