grape_oauth2 icon indicating copy to clipboard operation
grape_oauth2 copied to clipboard

Flexible, ORM-agnostic, fully customizable and simple OAuth2 provider for Grape API

Results 5 grape_oauth2 issues
Sort by recently updated
recently updated
newest added

Having troubles running this on grape 1.4.0 as the base response complains on ``` NoMethodError: undefined method `body' for # ``` It seems like the response changed and the second...

We're using Grape with Grape::OAuth2 for a Rails project which provides an API that needs to be secured by the Client Credentials flow of OAuth2. We've been following the configuration...

I call access_token_required! in several of my api endpoints, but not in the UserLogin endpoints. if I do the following ``` include Grape::OAuth2.api mount Api::UserLogin mount Api::SomeOtherEndpoint ``` I get...

bug

In our application we allow client to pass access tokens(optional) for GET requests for analytics and reports. But if client pass very old access token which is expired in request...

question

I need to use an auth code grant in my application. I can generate a auth code ok and pass that back, but when the client attempts to obtain a...

help wanted