update_image: Update image

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/update_image.r

Description

Update image metadata

Usage

1
update_image(id, title = NULL, description = NULL, ...)

Arguments

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.

title

Optionally, an image title.

description

Optionally, an image description.

...

Other arguments passed to HTTP request functions, for example: token (an OAuth2.0 token) or key (an API key, used by default).

Details

Update the title or description of an already-uploaded image.

Value

An object of class “imgur_basic”.

Author(s)

Thomas J. Leeper

See Also

upload_image

delete_image

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: 
# using a deletehash, anonymously
u <- upload_image('file.png')
update_image(u$deletehash, title = 'New Title')

# using an OAuth token
tkn <- imgur_login()
u <- upload_image('file.png', token = tkn)
update_image(u, title = 'New Title', token = tkn)

## End(Not run)

imguR documentation built on May 2, 2019, 4:02 p.m.