We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9481a0e + b86b754 commit 33ae9a0Copy full SHA for 33ae9a0
README.md
@@ -89,8 +89,9 @@ defmodule GitHub do
89
|> OAuth2.Client.authorize_url!(params)
90
end
91
92
- def get_token!(params \\ [], headers \\ []) do
93
- OAuth2.Client.get_token!(new(), params, headers)
+ # you can pass options to the underlying http library via `options` parameter
+ def get_token!(params \\ [], headers \\ [], options \\ []) do
94
+ OAuth2.Client.get_token!(new(), params, headers, options)
95
96
97
# Strategy Callbacks
0 commit comments