Exception: OmniAuth::Strategies::OAuth2::CallbackError
- Inherits:
-
StandardError
- Object
- StandardError
- OmniAuth::Strategies::OAuth2::CallbackError
- Defined in:
- lib/omniauth/strategies/oauth2.rb
Overview
An error that is indicated in the OAuth 2.0 callback. This could be a ‘redirect_uri_mismatch` or other
Instance Attribute Summary collapse
-
#error ⇒ Object
Returns the value of attribute error.
-
#error_reason ⇒ Object
Returns the value of attribute error_reason.
-
#error_uri ⇒ Object
Returns the value of attribute error_uri.
Instance Method Summary collapse
-
#initialize(error, error_reason = nil, error_uri = nil) ⇒ CallbackError
constructor
A new instance of CallbackError.
- #message ⇒ Object
Constructor Details
#initialize(error, error_reason = nil, error_uri = nil) ⇒ CallbackError
Returns a new instance of CallbackError.
113 114 115 116 117 |
# File 'lib/omniauth/strategies/oauth2.rb', line 113 def initialize(error, error_reason = nil, error_uri = nil) self.error = error self.error_reason = error_reason self.error_uri = error_uri end |
Instance Attribute Details
#error ⇒ Object
Returns the value of attribute error.
111 112 113 |
# File 'lib/omniauth/strategies/oauth2.rb', line 111 def error @error end |
#error_reason ⇒ Object
Returns the value of attribute error_reason.
111 112 113 |
# File 'lib/omniauth/strategies/oauth2.rb', line 111 def error_reason @error_reason end |
#error_uri ⇒ Object
Returns the value of attribute error_uri.
111 112 113 |
# File 'lib/omniauth/strategies/oauth2.rb', line 111 def error_uri @error_uri end |
Instance Method Details
#message ⇒ Object
119 120 121 |
# File 'lib/omniauth/strategies/oauth2.rb', line 119 def [error, error_reason, error_uri].compact.join(" | ") end |