xxxxxxxxxx
const {google} = require('googleapis');
const youtube = google.youtube('v3');
exports.latestVideoFromPlaylist = async (req, res) => {
try {
const playlistId = 'YOUR_PLAYLIST_ID'; // Replace with your playlist ID
const response = await youtube.playlistItems.list({
key: 'YOUR_API_KEY', // Replace with your API key
part: 'snippet',
maxResults: 1,
playlistId: playlistId
});
const latestVideoId = response.data.items[0].snippet.resourceId.videoId;
res.status(200).send({videoId: latestVideoId});
} catch (error) {
res.status(500).send(error.message);
}
};