-
-
Notifications
You must be signed in to change notification settings - Fork 420
Adds client certificate parameter to OAuth2Session #293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Related issue: #292 |
Requests should do this automatically: did you actually try using the |
Hi @Lukasa yes, we tried using the Feel free to close this PR if y'all know for a fact that |
I had the same problem, I tried to use the Thanks |
I've confirmed that the |
I tried |
So, it sounds like @amackera and @ltamaster are unable to pass the It seems cleaner to let Requests do the proxying automatically, so if we can avoid having to make this change, that seems preferable. But if it's not possible to do that proxying automatically, then I guess we do need this change. |
I just cloned the current trunk (master) and looking at the code for fetch_token I dont see how this would work as is without the extra cert args. Yes, I need to do this too :-) |
Hi, Is using oauth2session.cert the expected way to pass certificates ? I need this functionality too (to be able to pass certificate in fetch_token - which will take care of passing it further). Are we expecting this to be merged soon ? |
Closing this (years old) PR due to lack of activity. |
This allows users to specify a client certificate to pass to
requests
. This is useful for some OAuth providers that require client certificate authentication.