I have a webapp and I want to be able to view all images from a website on it.
I own the website and have access to it's server so as far as access goes I'm all good. I want to be able to view all the images and if I want, I would like to be able to replace the image on the website from the webapp. This is to allow clients of mine to be able to modify the images via the webapp on the website I'm creating / hosting for them.
So far I've found only ways to do the opposite which would be to take images from the website and copy them to my webapp which isn't what I want. I also know it would be easy to implement this using FTP but this option doesn't seem viable to me as it would be way too slow.
Let's say I have 50 pictures on my website, and want to view them all on the webapp as soon as it loads, getting them through FTP would be a huge bottleneck. I can live with the fact that I would need to use FTP to overwrite the image from the webapp to the website but I would like another solution if possible.
Is there an easy way to do this without FTP?