I have devise for authentication and the following are the steps i did and token authentication not working
- added
deviseto gem file - rails generate devise:install
- rails generate devise User
- rake db:migrate
- rails generate devise:views
- rails generate controller home index
and upto this there is no problem and then i added devise:token_authenticatable to user model and then i added before_save :ensure_authentication_tokenand then
- rails generate migration AddTokenAuthenticatableToUser authentication_token:string
then added attr_accessible :authentication_token to the user model
but
curl -H 'Content-Type: application/json' -H 'Accept: application/json' -X POST http://localhost:3000/users/sign_in -d "{'user' : { 'email' : 'sample@gmail.com', 'password' : 'xxxxxxxx'}}"
is not working. It displays error in terminal. pls tell me what should i do to get the token of user and use it in subsequent request?
UPDATE:
It saves authentication token in user table when creating new user from web app but could not register a new user from terminal or get the token for the user to authenticate using the token.