Let's consider such case:
- I have an image which contains, for example, a guitar
- Its name is guitar.png
- After uploaded it changes name to random string like kouyyvrmbubwkrh7ayvk.png
- Now i want to have a link to this file, but clicking it should download the file with changed name, eg. "my-custom-attachment.png", or something
Now I'm using simple <a>...</a>
with angular attribute:
<a ng-href="{{ vm.resource.attachment_url }}"> Download attachment </a>
Where vm.resource.attachment_url
is obviously fetched object with internal API
I wasn't able to find such implementation in Cloudinary API. Also, I hope I'm clear enough.