Sha256: d20c1e2dc8d08efa0fbf046758383eb5870d964481cab35b234d913c3ac3f639

Contents?: true

Size: 1.11 KB

Versions: 3

Compression:

Stored size: 1.11 KB

Contents

module OAuth2
  module Strategy
    # The Authorization Code Strategy
    #
    # @see http://tools.ietf.org/html/draft-ietf-oauth-v2-15#section-4.1
    class AuthCode < Base
      # The required query parameters for the authorize URL
      #
      # @param [Hash] params additional query parameters
      def authorize_params(params={})
        params.merge('response_type' => 'code', 'client_id' => @client.id)
      end

      # The authorization URL endpoint of the provider
      #
      # @param [Hash] params additional query parameters for the URL
      def authorize_url(params={})
        @client.authorize_url(authorize_params.merge(params))
      end

      # Retrieve an access token given the specified validation code.
      #
      # @param [String] code The Authorization Code value
      # @param [Hash] params additional params
      # @note that you must also provide a :redirect_uri with most OAuth 2.0 providers
      def get_token(code, params={})
        params = {'grant_type' => 'authorization_code', 'code' => code}.merge(client_params).merge(params)
        @client.get_token(params)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
panjiva-oauth2-0.5.1 lib/oauth2/strategy/auth_code.rb
panjiva-oauth2-0.5.0 lib/oauth2/strategy/auth_code.rb
oauth2-0.5.0 lib/oauth2/strategy/auth_code.rb