delete_album {imguR}R Documentation

Delete album

Description

Delete an album

Usage

delete_album(album, ...)

Arguments

album

An album 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 album.

Value

An object of class “imgur_basic”.

Author(s)

Thomas J. Leeper

See Also

create_album

favorite_album

update_album

Examples

## Not run: 
# using an OAuth token
tkn <- imgur_login()
a <- account_albums(token = tkn)
delete_album(a[[1]], token = tkn)

## End(Not run)

[Package imguR version 1.0.3 Index]