
Lookup which videos were liked by a user using the research API
Source:R/api_research.r, R/shorthands.r
      tt_user_liked_videos_api.RdUsage
tt_user_liked_videos_api(
  username,
  fields = "all",
  max_pages = 1,
  cache = TRUE,
  verbose = TRUE,
  token = NULL
)
tt_get_liked(
  username,
  fields = "all",
  max_pages = 1,
  cache = TRUE,
  verbose = TRUE,
  token = NULL
)Arguments
- username
- name(s) of the user(s) to be queried 
- fields
- The fields to be returned (defaults to all) 
- max_pages
- results are returned in batches/pages with 100 videos. How many should be requested before the function stops? 
- cache
- should progress be saved in the current session? It can then be retrieved with - last_query()if an error occurs. But the function will use extra memory.
- verbose
- should the function print status updates to the screen? 
- token
- The authentication token (usually supplied automatically after running auth_research once).