1

Let's say I have a default user authorization through devise in my rails app (using the default bcrypt encryptor).

I'm trying to make something like gui application, when user can sign in using rails application password. But I don't want to send my password to user application through ajax (it's insecure in my opinion). Is there any common way for remote authentication to devise using hashes?

Alex Antonov
  • 14,134
  • 7
  • 65
  • 142

1 Answers1

0

You can try:

Token based authentication for Devise
Devise comes with OmniAuth support out of the box

Or you can try to implement yourself

Artyom Zankevich
  • 459
  • 5
  • 16