Hi,
I'm trying to build an app to sort images. Mostly focused on holiday images. Since I have these spread through my Dropbox(phone camera uploads, dslr saved to a seperate Dropbox folder, shares from others who took pictures).
The idea is to make a webapp where I can go trough these images stored on Dropbox and label them, categorise them, etc.
Now most of that is no problem. But! I want to show the user (after giving permissions to the app) his own images in the browser. And I can't get it to work.
- Sharing isn't what I want, since then it will be "public". And I can't share with just myself.
- Temporary url creation can't create a link that works for embedding in html
- Downloading a file actually downloads it to the server and then I have to transfer it to the client of the user and embed it via javascript. This is messy and quite inefficient. I'm also worried about performance, since I want to go trough the images quickly(2500 vacation pictures is a lot of work).
Is there a way to embed images in html without sharing publicly?
I'm using the Python api and Flask.
Thanks in advance!