Method: Doorkeeper::Config::Builder#access_token_methods
- Defined in:
- lib/doorkeeper/config.rb
#access_token_methods(*methods) ⇒ Object
Change the way access token is authenticated from the request object. By default it retrieves first from the ‘HTTP_AUTHORIZATION` header, then falls back to the `:access_token` or `:bearer_token` params from the `params` object.
83 84 85 |
# File 'lib/doorkeeper/config.rb', line 83 def access_token_methods(*methods) @config.instance_variable_set(:@access_token_methods, methods) end |