I’m trying to integrate with Google Drive, using the google-api-client. Since there’s a lot of stuff going on, I would like to be able to see what’s going over the wire (http level). It seems that the client uses Faraday for http connectivity. How would I get a wiredump out of Faraday for debugging?
I’m trying to integrate with Google Drive, using the google-api-client. Since there’s a lot
Share
Google api client uses
Faraday.default_connectionby default. It is thus possible to manipulate this object, which can be done simply with the following line of code:Took me a while to figure out.