Sha256: cf742b0eab38e904849e78dd2cfdb91b00c7e845f15e91394f5a7111ebaab1e3

Contents?: true

Size: 945 Bytes

Versions: 7

Compression:

Stored size: 945 Bytes

Contents

module OAuth2
  module Strategy
    # The Resource Owner Password Credentials Authorization Strategy
    #
    # @see http://tools.ietf.org/html/draft-ietf-oauth-v2-15#section-4.3
    class Password < Base
      # Not used for this strategy
      #
      # @raise [NotImplementedError]
      def authorize_url
        raise(NotImplementedError, 'The authorization endpoint is not used in this strategy')
      end

      # Retrieve an access token given the specified End User username and password.
      #
      # @param [String] username the End User username
      # @param [String] password the End User password
      # @param [Hash] params additional params
      def get_token(username, password, params = {}, opts = {})
        params = {'grant_type' => 'password',
                  'username'   => username,
                  'password'   => password}.merge(params)
        @client.get_token(params, opts)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
oauth2-1.4.4 lib/oauth2/strategy/password.rb
oauth2-1.4.3 lib/oauth2/strategy/password.rb
oauth2-1.4.2 lib/oauth2/strategy/password.rb
oauth2-1.4.1 lib/oauth2/strategy/password.rb
oauth2-1.4.0 lib/oauth2/strategy/password.rb
oauth2-1.3.1 lib/oauth2/strategy/password.rb
oauth2-1.3.0 lib/oauth2/strategy/password.rb