Re: [Rails] Token authenctication

2014-09-04 Thread Jason Fleetwood-Boldt
I think you can implement that yourself along with Devise. Since you get so much with devise I would do that if it were me. last time I discussed this with business people, the need for the token auth outweighed the security considerations. We ameliorated this by 1) Making the token expire

Re: [Rails] Token authenctication

2014-09-04 Thread Sander Obdeijn
No only my own private 'au natural' pictures will be hosted. I'm looking a the gem, but i can't find how to request a token after you have implemented it. Is there more documention about using the token authentication? Op donderdag 4 september 2014 17:20:05 UTC+2 schreef Jason FB: I think

Re: [Rails] Token authenctication

2014-09-04 Thread Emil S
Sander, devise( https://github.com/plataformatec/devise ) + doorkeeper( https://github.com/doorkeeper-gem/doorkeeper ) may work well for your case. Doorkeeper is based on OAuth specs which is pretty solid for token based auth. A google search involving both the gems would give you enough material

[Rails] Token authenctication

2014-09-03 Thread Sander Obdeijn
Hi all, i'm building my first project in RoR. And i'm now looking into authentication. A lot of the posts online recommended devise so i'm looking into that. I require authentication in a html website and a json api and i'm using ruby 1.9.3 and rails 4.1.4. Now I have seen that devise has