Make your YouTube Playlists Private with Google Scripts

The Google Script will check the privacy status of each of your YouTube playlists and set the visibility status of the ones that are either public or unlisted to private. Good option if you would not like the Internet to know about the various playlists you have saved in your YouTube channel.

You’ll have to enable the YouTube Data API available under Advanced Google Services inside the Google Apps Script Editor.

function makeYouTubePrivate() {
  var nextToken = '';

  while (nextToken != null) {
    var res = YouTube.Playlists.list('snippet,status', {
      maxResults: 50,
      mine: true,
      pageToken: nextToken,
    });

    for (var i = 0; i < res.items.length; i++) {
      var item = res.items[i];

      if (item.status.privacyStatus != 'private') {
        Logger.log('Updating ' + item.snippet.title + ', ' + item.status.privacyStatus);
        item.status.privacyStatus = 'private';
        var updateRes = YouTube.Playlists.update(item, 'snippet, status');
        Logger.log(updateRes.status.privacyStatus);
      }
    }

    nextToken = res.nextPageToken;
  }
}
Amit Agarwal

Amit Agarwal

Google Developer Expert, Google Cloud Champion

Amit Agarwal is a Google Developer Expert in Google Workspace and Google Apps Script. He holds an engineering degree in Computer Science (I.I.T.) and is the first professional blogger in India.

Amit has developed several popular Google add-ons including Mail Merge for Gmail and Document Studio. Read more on Lifehacker and YourStory

0

Awards & Titles

Digital Inspiration has won several awards since it's launch in 2004.

Google Developer Expert

Google Developer Expert

Google awarded us the Google Developer Expert award recogizing our work in Google Workspace.

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards in 2017.

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional (MVP) title for 5 years in a row.

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator title recognizing our technical skill and expertise.

Email Newsletter

Sign up for our email newsletter to stay up to date.

We will never send any spam emails. Promise.