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: token (an OAuth2.0 token), which is required.
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.
Returns
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 settingsaccount_settings(token = tkn)# set albums to default to publicaccount_settings(album_privacy ='public', token = tkn)## End(Not run)