我使用该设计的 authenticate_user!控制器中的方法。当请求中提供的 auth_token 正确时,这可以正常工作,但如果身份验证失败,我最终会得到:
curl -XGET 'http://localhost:3000/my_obj?auth_token=wrongtoken'
<html><body>You are being <a href="http://localhost:3000/users/sign_in">redirected</a>.</body></html>
当我使用 rabl 时,最好的方法是什么
{'error' : 'authentication error'}
返回而不是 html 重定向?