oauth-plugin icon indicating copy to clipboard operation
oauth-plugin copied to clipboard

Rails plugin for OAuth

Results 70 oauth-plugin issues
Sort by recently updated
recently updated
newest added

If you try to include this library with Rails 5.1, you get the following error: ``` Failure/Error: include Oauth::Controllers::ConsumerController NoMethodError: undefined method `before_filter' for OAuthConsumersController:Class Did you mean? before_action #...

Who is using this with Rails 5.1 in production? What is your fork? I see a lot of fork with different fixes but don' t know how to bring them...

`render :text` is deprecated on rails 5

https://tools.ietf.org/html/rfc5849#page-9 RFC 5849 requires or at least strongly suggests that tokens be returned with content type "application/x-www-form-urlencoded" From Section 2.1: "The server MUST verify (Section 3.2) the request and if...

I have added an optional param to the middleware definition. The user can specify a regex to restrict the paths that the OAuthFilter will act upon. If no param is...

For oauth v1.0 request token, `authorized_at` should be `NULL`.

Generator provides model Oauth2Token as: `class Oauth2Token < AccessToken` But Oauth2Token is declared in /lib/oauth/models/consumers/services/oauth2_token.rb as: `class Oauth2Token < ConsumerToken`, resulting in: ``` 13:45:05 worker.1 | superclass mismatch for class...

This gem depends on ruby 1.9 since version 0.5.0, please add it to gemspec

To get rid of deprecation warnings.

Using rails 4 and the following gems: oauth (0.4.7) oauth-plugin (0.5.1) oauth2 (0.9.4) I changed the OauthConsumersController class to have the following to get the exception. ``` ruby def callback2...