I am trying to download original full size images from a shared Album (shared for everyone) of Google Photo with python. I get album with commands:
url=sys.argv[1]
response = urllib2.urlopen(url)
dong = response.read()
dong=dong.split("\n")
for i in range(len(dong)-1,-1,-1):
if len(dong[i])>277 or len(dong[i])<275 or dong[i][0:3]!=',["' :
del dong[i]
hinh=[]
for i,d in enumerate(dong):
hinh.append(d[3:47])
for h in hinh:
href=url.replace("?key","/photo/"+h+"?key")
print href
Then I parse and get link for images, but all are in size 478x638.