(This is a follow-up question to this one)
How can I tell urllib3
to log the FULL request, including, but not limited to:
- URL
- query parameters
- headers
- body
- and anything else which is sent inside the request (I am not sure there is anything else, but if there is something else, I also want to see it)
I am having trouble connecting to LinkedIn with OAuth (a similar implementation works with Google and Facebook), and I would like to see exactly what requests are being sent. I suspect the auth_token
is not being provided, but I need to confirm this. For that, I need urllib3
to show the full requests, since they are over HTTPS and I can not analyze network traffic to see them (end-to-end encryption).