Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm designing user API for devise, and want to return the user authentication_token when they login with email/password. I have the token set up but when I make POST request to users/sign_up,

curl -v -X POST -d '{"user":{"email":"test@test.com", "password":"password"}}' http://localhost:3000/users/sign_in.json --header "Content-Type: application/json"

in the response there's no authentication_token. How can I do a response with authentication_token? Which method shall I inherit/overwrite for devise login?

share|improve this question
1  
Have you seen this? stackoverflow.com/questions/13623562/… – Ashitaka Dec 12 '12 at 0:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.