-
Hello, I’m currently working in this project: https://github.com/jaimetur/OrganizeTakeoutPhotos and I would like to include a feature to copy all photos within Synology Photos albums into physical folder. I have just found that this script can do it and I would like to integrate this API into my script. Could you please support me with the API call and method that you used to get this work? My script is coded on Python, I don’t have any knowledge of rust thank you so much in advance |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Hi @jaimetur, Do you wish to export it to any folder on DSM, or to a folder controlled by Synology Photos (i.e. located under This app can only do the latter. |
Beta Was this translation helpful? Give feedback.
-
Thank you.
Yes it helped me a lot.
I finally managed to include option to extract albums from Synology Photos (option -sea) on my Script:
https://github.com/jaimetur/OrganizeTakeoutPhotos
My next step is add support for Immich photos but I have no investígate Immich api yet.
Thanks again
|
Beta Was this translation helpful? Give feedback.
In this app I am not downloading anything, just calling the API to list or copy things around, but you're probably on the right track with that SYNO.Foto.Download if you need it.
Here's the gist for listing the photos in an album:
Next:
Using one of the above you can obtain an album id, which you'll need in the next one:
Having ids of the indivi…