Class: OAuth2::Strategy::Password
- Defined in:
- lib/oauth2/strategy/password.rb
Overview
The Resource Owner Password Credentials Authorization Strategy
Instance Method Summary collapse
- 
  
    
      #authorize_url  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Not used for this strategy. 
- 
  
    
      #get_token(username, password, params = {}, opts = {})  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Retrieve an access token given the specified End User username and password. 
Methods inherited from Base
Constructor Details
This class inherits a constructor from OAuth2::Strategy::Base
Instance Method Details
#authorize_url ⇒ Object
Not used for this strategy
| 10 11 12 | # File 'lib/oauth2/strategy/password.rb', line 10 def raise(NotImplementedError, 'The authorization endpoint is not used in this strategy') end | 
#get_token(username, password, params = {}, opts = {}) ⇒ Object
Retrieve an access token given the specified End User username and password.
| 19 20 21 22 23 24 | # File 'lib/oauth2/strategy/password.rb', line 19 def get_token(username, password, params = {}, opts = {}) params = {'grant_type' => 'password', 'username' => username, 'password' => password}.merge(params) @client.get_token(params, opts) end |