Access all dropbox images in a public dropbox folder

ijordan

New Member
I would like to embed a photo gallery in my website that draws from a public dropbox folder. I can access a single image by referencing its public url as shown below:\[code\]//html of image on my page<asp:Image ID="Image2" runat="server" />//code behind setting image urlImage2.ImageUrl = "https://www.dropbox.com/sh/upfkqg2xlm6jjwc/-inOrlDJH0/star%20wars.jpg?m";\[/code\]This works great for individual images, but I want to get all the images in a public folder. I have a public folder here loaded with two sample images, but I have been unable to use the api or other methods to get all contained files: https://www.dropbox.com/sh/upfkqg2xlm6jjwc/bRiI4_tThFI am looking for some way to load all contained files into a list of some sort.
 
Back
Top