class Eol::OauthResponse

Public Instance Methods

access_token() click to toggle source
# File lib/eol/oauth.rb, line 105
def access_token
  body["access_token"]
end
body() click to toggle source
# File lib/eol/oauth.rb, line 101
def body
  JSON.parse(@response.body)
end
division() click to toggle source
# File lib/eol/oauth.rb, line 109
def division
  body["division"]
end
refresh_token() click to toggle source
# File lib/eol/oauth.rb, line 113
def refresh_token
  body["refresh_token"]
end