Sha256: 035db313acf5b66a076bcd260a91d95ba19f45fcea0646ffd1e858b9858d8f49
Contents?: true
Size: 744 Bytes
Versions: 14
Compression:
Stored size: 744 Bytes
Contents
module Instagram # Defines HTTP request methods module OAuth # Return URL for OAuth authorization def authorize_url(options={}) options[:response_type] ||= "code" params = access_token_params.merge(options) connection.build_url("/oauth/authorize/", params).to_s end # Return an access token from authorization 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 private def access_token_params { :client_id => client_id, :client_secret => client_secret } end end end
Version data entries
14 entries across 14 versions & 4 rubygems