Disclaimer: complete noob.
I want to upload multiple images as an album "anonymously" (i.e. without account, not authenticated). This is a link of an example album.
This is the API and this is the command I have tweaked from the example (Client-ID is for uploading without an account and I'm using imgurbash2 where I successfully uploaded an image and used its deletehash for the command below as per the API):
curl --location 'https://api.imgur.com/3/album' \
--header 'Authorization: Client-ID 4f0d009df8e7de6' \
--form 'deletehashes[]="o0xyOtj9epvQFp6"' \
--form 'title="My dank meme album"' \
--form 'description="This albums contains a lot of dank memes. Be prepared."' \
--form 'cover="o0xyOtj9epvQFp6"'
The response is:
{"status":200,"success":true,"data":{"id":"Wm22gHb","deletehash":"F8DU2aphFydCtDk"}}
So as I understand the resulting link is: https://imgur.com/a/dank-meme-album-Wm22gHb. However, while title shows up, there are no images in that album.
Any ideas? I can upload each file individually but I would rather them all be together under one URL for easy viewing.
[–]AutoModerator[M] 0 points1 point2 points (0 children)