id: An image ID or object of class imgur_image . If no token is supplied, id must be a deletehash from the original upload_image response.
...: Other arguments passed to HTTP request functions, for example: token (an OAuth2.0 token) or key (an API key, used by default).
Details
Deletes an image.
Returns
An object of class imgur_basic .
Author(s)
Thomas J. Leeper
See Also
upload_image
update_image
Examples
## Not run:# using a deletehash, anonymouslyu <- upload_image('file.png')delete_image(u$deletehash)# using an OAuth tokentkn <- imgur_login()u <- upload_image('file.png', token = tkn)delete_image(u, token = tkn)## End(Not run)