Service to store images temporarily.
POST -F image=bytes /upload
Ok Response: "MediaID"
. The image stays availble for an hour.
GET /get/{media_id}
It responds with bytes of content-type: image/png
.
POST -F image=bytes /thumbnail
It responds with bytes of content-type: image/png
.
GET /exists/{media_id}
true
if the image exists and false
if it doesn't.