I am stuck between WooCommerce and DropBox. WooCommerce can read a product image from a any public url.
code:
public async Task<string> GetUrl(string path)
{
var tl = await dbx.Files.GetTemporaryLinkAsync(path);
return tl.Link;
}
Returned Url (portions removed for clarity)
"https://content.dropboxapi.com/apitl/1/AfZz93nWrLwDH...wtTPaQ"
This URL will allow a browser to download the image, but is there a way to get a direct URL?
Such as "https://content.dropboxapi.com/folder1/ImageAAA123.jpg"?