simple_token_authentication
simple_token_authentication copied to clipboard
Simple (and safe*) token authentication for Rails apps or API with Devise.
Hi, in case users include characters like ä,ö or ß etc. in their mail addresses, the authentication process does not work for me (Active record crashes with an exception). Even...
Addresses #207. I have not fixed the specs yet, because I'm not sure how the design will evolve. This allows for a per-controller configuration of where identifiers and tokens should...
Is the token expirable? I didn't see any configuration to achieve this. Is there a way to do it with simple_token_auth? Thanks in advance! Kevin
See #138 - specifically [this comment](https://github.com/gonzalo-bulnes/simple_token_authentication/issues/138#issuecomment-143186687) and the previous ones from @Kentverger.
Hi, I have been trying for a logn time to understand this. I have a rails app with devise and omniauth (with sessions and sessions cookie and everything). I installed...
The gem was tied with `:email` as the user identifier. Which meant, someone using devise for authentication cannot use this gem for token authentication if their user model has `username`...
Thanks for creating this Gem. It's a great idea and fills a missing need in Devise. I have been trying to implement this but have been unsuccessful so far. I...
**As an** user **In order to** ensure no-one can sign in with a token which was related to credentials I have deprecated **I want** my authentication token to be renewed...
**As a** developer **In order to** get an insight of which way could lead to effectively decorating the `Devise::PasswordsController#update` action **And** to be able to decide which is the better...