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

Currently, devise is configured to accept token authentication via URL and curl works well

curl 'http://localhost/index.json?auth_token=TOKENVALUE'

Now I'd like to pass the TOKENVALUE via HTTP header instead of URL, how can I config devise to get the TOKENVALUE from either HTTP header or URL? Such that both the above and following curl requests will work:

curl 'http://localhost/index.json' -H 'Authorization: Token token="TOKENVALUE"'

as shown in this railscast.

share|improve this question

1 Answer

It seems there isn't such config in devise. But there is a solution by other person. Please see Using auth_token from request headers instead from POST/PUT parameters with Rails 3 / devise

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.