Module: Instagram::OAuth

Defined in:
lib/instagram-fixed/oauth.rb

Overview

Defines HTTP request methods

Instance Method Summary collapse

Instance Method Details

#authorize_url(options = {}) ⇒ Object

Return URL for OAuth authorization



5
6
7
8
9
# File 'lib/instagram-fixed/oauth.rb', line 5

def authorize_url(options={})
  options[:response_type] ||= "code"
  params = access_token_params.merge(options)
  connection.build_url("/oauth/authorize/", params).to_s
end

#get_access_token(code, options = {}) ⇒ Object

Return an access token from authorization



12
13
14
15
16
# File 'lib/instagram-fixed/oauth.rb', line 12

def get_access_token(code, options={})
  options[:grant_type] ||= "authorization_code"
  params = access_token_params.merge(options)
  post("/oauth/access_token/", params.merge(:code => code), raw=false, unformatted=true)
end