Class: ExvoAuth::Strategies::Interactive

Inherits:
Base
  • Object
show all
Defined in:
lib/exvo_auth/strategies/interactive.rb

Instance Method Summary collapse

Methods inherited from Base

#auth_hash, #user_data, #user_info

Constructor Details

#initialize(app, app_id, app_secret, options = {}) ⇒ Interactive

Returns a new instance of Interactive.



2
3
4
# File 'lib/exvo_auth/strategies/interactive.rb', line 2

def initialize(app, app_id, app_secret, options = {})
  super(app, :interactive, app_id, app_secret, options)
end

Instance Method Details

#request_phase(options = {}) ⇒ Object



6
7
8
# File 'lib/exvo_auth/strategies/interactive.rb', line 6

def request_phase(options = {})
  super(:scope => request["scope"])
end