How do you use cURL to authenticate on a Rails application that uses Devise?

后端 未结 4 759
温柔的废话
温柔的废话 2021-01-31 00:21

I want to test my rails web service using cURL, yet so far I could only do it while deactivating before_filter :authenticate_user!. But I\'d like to log in a priori

4条回答
  •  醉梦人生
    2021-01-31 00:54

    Got the following answer from José Valim:

    If you have an web service, sign in should be done using HTTP Auth. If not, your option is to disable authenticity token on the session form, although not recommended.

提交回复
热议问题