I’ve created the following code in order to include navigation buttons at the top of my Tutor LMS courses. Their purpose is that the user can navigate between courses in a category. However, I can only get the buttons ...
StackOverflow Latest Questions
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 ...