I am using TouchSelfie to create a simple photobooth. It should allow me to upload photos to a Google photos album, and was working yesterday. Today the uploading feature seemed to stop.
I can query my photo albums successfully using the following example code:
photos = client.GetFeed(album_url)
for photo in photos.entry:
print 'Photo title:', photo.title.text
Since the photos in that album get printed, I presume my credentials are working fine.
But if I try to upload a photo using the InsertPhotoSimple function I get error: [Errno 32] Broken pipe The InsertPhotoSimple code I am using is straight from the API Documentation
I am using TouchSelfie to create a simple photobooth. It should allow me to upload photos to a Google photos album, and was working yesterday. Today the uploading feature seemed to stop.
I can query my photo albums successfully using the following example code:
Since the photos in that album get printed, I presume my credentials are working fine.
But if I try to upload a photo using the
InsertPhotoSimple
function I geterror: [Errno 32] Broken pipe
The InsertPhotoSimple code I am using is straight from the API DocumentationI can't figure it out what happened! My codebase didn't change, but now I am getting errors. Any help is appreciated!
The full stack trace: