See which images have been uploaded to imgur using my ClientID app?

I use https://api.imgur.com/3/image to download images with JavaScript without oauth .
Can I see which images were downloaded recently using my Client-ID ?

+5
source share
1 answer

Unfortunately, this is not possible, but I think the following approach will give good results: use the following endpoint to extract all related images:

https://api.imgur.com/3/account/ {username} / images

Or for the images shown:

https://api.imgur.com/3/account/ {username} / materials /

For the username, you can use "I" and you need to send the client ID using the correct header:

'Authorization: Customer ID YOUR_CLIENT_ID'

This will return all images downloaded from the account, and you need to filter them yourself.

If you upload them to the gallery and want to know only that, you can set the time window in the request (week, day, etc.).

+5
source

All Articles