Class: OmniAuth::Strategies::DNAnexus

Inherits:
OAuth2
  • Object
show all
Defined in:
lib/omniauth/strategies/dnanexus.rb

Instance Method Summary collapse

Instance Method Details

#raw_infoObject



41
42
43
44
45
46
47
48
49
# File 'lib/omniauth/strategies/dnanexus.rb', line 41

def raw_info
  @raw_info ||= access_token.post(
    user_describe_endpoint,
    body: "{}",
    headers: {
      "Content-Type" => "application/json"
    }
  ).parsed
end