We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am migrating my old Python 2.7 version to Python 2.10.
response = requests.post('https://photoslibrary.googleapis.com/v1/uploads', headers=headers, data=data)
works fine, but when I call
response = gphotos.mediaItems().batchCreate(body=body).execute()
I get the following exception (<class 'TimeoutError'>, TimeoutError(110, 'Connection timed out'), <traceback object at 0x42266b88>)
(<class 'TimeoutError'>, TimeoutError(110, 'Connection timed out'), <traceback object at 0x42266b88>)
The Google console shows multiple timeout errors.
What could be wrong here? Is there any way to increase timeout for execute?
execute
The text was updated successfully, but these errors were encountered:
vchudnov-g
No branches or pull requests
I am migrating my old Python 2.7 version to Python 2.10.
response = requests.post('https://photoslibrary.googleapis.com/v1/uploads', headers=headers, data=data)
works fine, but when I call
response = gphotos.mediaItems().batchCreate(body=body).execute()
I get the following exception
(<class 'TimeoutError'>, TimeoutError(110, 'Connection timed out'), <traceback object at 0x42266b88>)
The Google console shows multiple timeout errors.
What could be wrong here? Is there any way to increase timeout for
execute
?The text was updated successfully, but these errors were encountered: