6 ms·
Looks awesome, and will help quick galleries to be created. I wanted to build something similar, but at that time photos did not expose APIs to get list of pho
by darubramha 2y ago
Looks awesome, and will help quick galleries to be created.
I wanted to build something similar, but at that time photos did not expose APIs to get list of photos.
What was your work around? Or have they opened up the APIs now?
- Alifatisk 2y agoCurious about this aswell
- mxuribe 2y agoI'm not affiliated with this effort, but would the following google api suffice? https://developers.google.com/photos https://developers.google.com/photos
- gabigrin 2y agoThanks! We're using the Google Picker API - https://developers.google.com/photos/picker/reference/rest https://developers.google.com/photos/picker/reference/rest You create a picker "session" which is a link where the user can select images from Google's side. Then you poll the session and once the user is done, you can get access to the media items (imgs and videos) that the user selected. At first, we wanted to auto-sync galleries and were bummed by the way this API works, but tbh it ended up being more private and secure for the user (no auto-syncing that embarrassing picture that shouldn't be online) and helped us avoid implementing a picker on our end.
- gnaman 2y agoHow long is the session active for? Do you store these photos on your servers?
- gabigrin 2y agoThe session is active for couple of hours IIRC. Once the user is done with the selection we upload the images to our servers (Supabase storage) and delete the GPhotos session.
- kiwicopple 2y agothanks for using supabase - feel free to reach out if you have any feedback/issues