account_settings {imguR} | R Documentation |
Retrieve and modify account settings
Description
Retrieve and modify account settings
Usage
account_settings(bio = NULL,
public_images = NULL,
messaging_enabled = NULL,
album_privacy = NULL,
accepted_gallery_terms = NULL,
...)
Arguments
bio |
The biography of user, which is displayed in the gallery profile page. |
public_images |
A logical indicating whether images public by default. |
messaging_enabled |
A logical indicating whether private messages are allowed. |
album_privacy |
The default privacy for albums. One of “public”, “hidden”, or “secret”. |
accepted_gallery_terms |
A logical indicating whether the user agrees to the Imgur gallery terms. |
... |
Other arguments passed to HTTP request functions, for example: |
Details
If none of the named arguments (other than token
) are specified, this retrieves settings of the account. If any of the named arguments are specified, those parameters are modified.
Value
If not modifying settings, an object of “imgur_account_settings”, otherwise an object of “imgur_basic”.
Author(s)
Thomas J. Leeper
Examples
## Not run:
tkn <- imgur_login()
# retrieve settings
account_settings(token = tkn)
# set albums to default to public
account_settings(album_privacy = 'public', token = tkn)
## End(Not run)