-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Baked in OAuth support #27
Comments
My rough plan is to make it so an The other downside with |
Thinking out loud: maybe we have a columns This may be our best of both worlds approach. |
@paulcsmith that could work |
Related to #27 The problem with enforcing encrypted_password was that if you wanted to have email/password sign in *and/or* some other social sign in then it would not work. You'd have to set "encrypted_password" to "fake" or some other hack. This update makes it so you can make encrypted_password nil if you want.
Related to #27 The problem with enforcing encrypted_password was that if you wanted to have email/password sign in *and/or* some other social sign in then it would not work. You'd have to set "encrypted_password" to "fake" or some other hack. This update makes it so you can make encrypted_password nil if you want.
@matthewmcgarvey / @jwoertink I'd advocate for striking this from our 1.0 roadmap. I've implemented OAuth twice now, alongside passwords and in place of passwords, and it's been really quick with this shard: Here's an example of an app I could certainly see some kind of task in Authentic in the future that used something like my Spark shard to add this functionality to an existing app with a new |
Yeah, we won't get OAuth baked in for 1.0. Plus it seems like something that could be added after 1.0 without breaking stuff. On a side note, we could add a link to that multi_auth shard in the new community section of the site. |
Cool, I'll remove it from that Milestone for now. Yeah, either the Community section or an "Adding OAuth" tutorial would serve the purpose of getting folks up and running! We'll just want to make sure something in the Algolia-indexed search results can still find it so that searching "oauth" would yield results. |
It would be nice if Authentic could integrate some of the functionality that MultiAuth provides and allow for an easy OAuth authentication flow. In the short term it would be nice to at least take OAuth into account, because right now Authentic doesn't work without
encrypted_password
.The text was updated successfully, but these errors were encountered: