我用过 before_filter :authenticate_user!在我的控制器中,如果我删除它并给出
curl -H 'Content-Type: application/json' -H 'Accept: application/json' -X GET http://localhost:3000/posts
然后我看到 json 数据。那么我该如何使用 before_filter :authenticate_user!以使其安全。
我用过 before_filter :authenticate_user!在我的控制器中,如果我删除它并给出
curl -H 'Content-Type: application/json' -H 'Accept: application/json' -X GET http://localhost:3000/posts
然后我看到 json 数据。那么我该如何使用 before_filter :authenticate_user!以使其安全。