Get ids of playlists that contain details about the content of a channel.
Usage
get_my_channel_detail_playlist_ids(
  client = yt_construct_client(),
  cache_disk = getOption("yt_cache_disk", FALSE),
  cache_key = getOption("yt_cache_key", NULL),
  token = NULL
)Arguments
- client
 A YouTube OAuth client created with
yt_construct_client().- cache_disk
 Should the access token be cached on disk? This reduces the number of times that you need to re-authenticate at the cost of storing access credentials on disk.
Learn more in https://httr2.r-lib.org/articles/oauth.html.
- cache_key
 If you are authenticating with multiple users using the same client, use this key to differentiate between those users.
- token
 A YouTube API OAuth token, or the
access_tokenstring from such a token. We recommend that you instead supply aclient, in which case an appropriate token will be located if possible.
Value
The contentDetails object encapsulates information about the channel's content.
| Property | Class | Description | 
| watchHistory | character | The ID of the playlist that contains the channel's watch history. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list. | 
| likes | character | The ID of the playlist that contains the channel's liked videos. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list. | 
| favorites | character | The ID of the playlist that contains the channel's favorite videos. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list. | 
| watchLater | character | The ID of the playlist that contains the channel's watch later playlist. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list. | 
| uploads | character | The ID of the playlist that contains the channel's uploaded videos. Use the videos.insert method to upload new videos and the videos.delete method to delete previously uploaded videos. |