Get a data frame of hot tags for a given time period.
getHotTags.Rd
Get a data frame of hot tags for a given time period.
Arguments
- api_key
Flickr API key. If api_key is
NULL
, the function usesgetFlickrAPIKey()
to use the environment variable "FLICKR_API_KEY" as the key.- period
The period for which to fetch hot tags. Valid values are day or week. Defaults to day
- count
The number of tags to return. Defaults to 20. Maximum allowed value is 200.
See also
Flickr API Documentation: flickr.tags.getHotList
Examples
if (FALSE) {
getHotTags(
api_key = get_flickr_api_key(),
period = "day",
count = 20
)
}