Passing code_verifier
argument from Flow.from_client_config()
to class constructor is missing.
#45
Labels
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
With the introduction of
code_verifier
it should be possible to pass our owncode_verifier
toFlow.from_client_config()
classmethod.Currently, if you pass it as
kwargs
, therequests_oauth
session creation will fail becausecode_verifier
is not supposed to be in kwargs for that class and if it didn't, the value itself would not be passed to the constructor.I think it would be a good idea to include
code_verifier
as a positional argument for thefrom_client_config()
function.The text was updated successfully, but these errors were encountered: