StackOverflow Latest Questions

Saralyn
  • 0
  • 0

Im trying with this code: $playlistId = "YOUR_PLAYLIST_ID"; // Replace with your actual Playlist ID $playlistItem = new Google\Service\YouTube\PlaylistItem(); $playlistItemSnippet = new Google\Service\YouTube\PlaylistItemSnippet(); $playlistItemSnippet->setPlaylistId($playlistId); $playlistItemSnippet->setResourceId(new Google\Service\YouTube\ResourceId([ 'kind' => 'youtube#video', 'videoId' => $videoId ])); $playlistItem->setSnippet($playlistItemSnippet); $response = $youtube->playlistItems->insert('snippet', $playlistItem); but the video doesnt ...