diff --git a/docs/how_to_get_youtube_api_key.md b/docs/how_to_get_youtube_api_key.md new file mode 100644 index 0000000..a71f479 --- /dev/null +++ b/docs/how_to_get_youtube_api_key.md @@ -0,0 +1,23 @@ +# How to get YouTube API Key + +1. Navigate to https://console.developers.google.com +2. Click `Select a project`. +![Select project](img/youtube_select_project.png) +3. Click `New project`. +![New project](img/youtube_new_project.png) +4. Give it a name and click `Create` button. +![Dashboard](img/youtube_dashboard.png) +5. Click `Library`, find and click on `YouTube Data API v3` box. +![YouTube Data API](img/youtube_data_api_v3.png) +6. Click `Enable`. +![YouTube Enable](img/youtube_data_api_enable.png) +5. Click `Credentials`. +6. Click `Create credentials`. +7. Select `API key`. +![Create API key](img/youtube_create_api_key.png) +8. Copy token to your CLI's configuration file. +![Copy token](img/youtube_copy_token.png) +```toml +[tokens] +youtube = "AIzaSyD4w2s-k79YNR98ABC" +``` \ No newline at end of file diff --git a/docs/img/youtube_copy_token.png b/docs/img/youtube_copy_token.png new file mode 100644 index 0000000..6d0d91b Binary files /dev/null and b/docs/img/youtube_copy_token.png differ diff --git a/docs/img/youtube_create_api_key.png b/docs/img/youtube_create_api_key.png new file mode 100644 index 0000000..43d6550 Binary files /dev/null and b/docs/img/youtube_create_api_key.png differ diff --git a/docs/img/youtube_dashboard.png b/docs/img/youtube_dashboard.png new file mode 100644 index 0000000..67baa6e Binary files /dev/null and b/docs/img/youtube_dashboard.png differ diff --git a/docs/img/youtube_data_api_enable.png b/docs/img/youtube_data_api_enable.png new file mode 100644 index 0000000..6bac807 Binary files /dev/null and b/docs/img/youtube_data_api_enable.png differ diff --git a/docs/img/youtube_data_api_v3.png b/docs/img/youtube_data_api_v3.png new file mode 100644 index 0000000..6a04a5f Binary files /dev/null and b/docs/img/youtube_data_api_v3.png differ diff --git a/docs/img/youtube_new_project.png b/docs/img/youtube_new_project.png new file mode 100644 index 0000000..7a6e1db Binary files /dev/null and b/docs/img/youtube_new_project.png differ diff --git a/docs/img/youtube_select_project.png b/docs/img/youtube_select_project.png new file mode 100644 index 0000000..388dd79 Binary files /dev/null and b/docs/img/youtube_select_project.png differ