class Omniauth::Strategies::Telepass

Public Instance Methods

authorize_params() click to toggle source
Calls superclass method
# File lib/omniauth/strategies/telepass.rb, line 16
def authorize_params
  super.tap do |params|
    %w[scope client_options].each do |v|
      if request.params[v]
        params[v.to_sym] = request.params[v]
      end
    end
  end
end
callback_url() click to toggle source
# File lib/omniauth/strategies/telepass.rb, line 50
def callback_url
  full_host + script_name + callback_path
end
raw_info() click to toggle source
# File lib/omniauth/strategies/telepass.rb, line 41
def raw_info
  access_token.options[:mode] = :query

  conn = Faraday.new(:url => "https://telepass.me")
  conn.authorization :Bearer, access_token.token

  @raw_info ||= MultiJson.load(conn.get('/api/user').body)
end
request_phase() click to toggle source
Calls superclass method
# File lib/omniauth/strategies/telepass.rb, line 12
def request_phase
  super
end