rails_api_auth icon indicating copy to clipboard operation
rails_api_auth copied to clipboard

Lightweight Rails Engine that implements the "Resource Owner Password Credentials Grant" OAuth 2.0 flow as well as Facebook authentication

Results 10 rails_api_auth issues
Sort by recently updated
recently updated
newest added

This adds support for implementing custom authenticators for supporting custom grant types. This is only the first stab at the feature and likely needs some cleanup and tuning but should...

This cleans up the code, fixes typos and also organizes the specs a bit differently so that we reuse more of the common oauth2 behaviors instead of adding new specs...

Because `force_ssl` is only `false` on development, you get redirected when running test. Maybe check for **development** and **test**?

When a user logs in for the first time with her (his) social account, will this create an account in the user model? If an account is created, is there...

enhancement

Would it be a good idea to add a `/users/me` endpoint or send the `user_id` back in `session.data` as marcoow described in this [post](https://github.com/simplabs/ember-simple-auth/blob/master/guides/managing-current-user.md)? This was mentioned in #22, I...

I came across an odd issue today when I was implementing facebook authentication in development against a test app I had set up and I'm wondering if anyone else has...

I've added Oauth2 provider support, for the popular Edx learning platform. Would you be interested in looking at a pull request? :) Or is this perhaps out of the spirit...

Unless there is something totally flawed with my logic, the last step of generating a new, separate access token is unnecessary where login is via OAuth. It would be more...

We should extract the credentials and the Facebook data from the `Login` model into `Identity` models and use STI to inherit `CredentialsIdentity`, `FacebookIdentity` model (and more in the future) from...

enhancement