Youtube Node (WIP)

Google OAuth2 (Calendar, Drive, Sheets, Mail, Youtube)

Youtube OAuth2 API

Action List

Channel Actions

How to find Channel ID
If you press the developer tool (F12) in Chrome and search for channel_id or RSS, you will see the HTML code below. Here, you can copy the value after channel_id. “UCGU_CgteEqNSjiXcF0QfaKg”
<link rel="alternate" type="application/rss+xml" title="RSS" href="https://www.youtube.com/feeds/videos.xml?channel_id=UCGU_CgteEqNSjiXcF0QfaKg">

Video Actions

How to find Video ID
Just click the Share button and get the value from the URL. Usually, there are two URLs below.

Search Action

This function is replaced by HTTP Request.
curl \
  '<https://youtube.googleapis.com/youtube/v3/search?part=snippet&maxResults=25&q=surfing&key=[YOUR_API_KEY]>' \
  --header 'Accept: application/json' \
  --compressed