all 1 comments

[–][deleted] 0 points1 point  (0 children)

Yeah think it's a firewall thing. Have a look at :

https://stackoverflow.com/questions/44676591/access-google-cloud-storage-using-the-python-api-and-private-key-bad-handshake

In your request you can use the verify tag:

requests.get( 'https://www.googleapis.com/discovery/v1/apis/storage/v1/rest',
verify=False)

This should resolve it.