From aa54fedcb3ae10c74d1fc57381bbe243199bfb17 Mon Sep 17 00:00:00 2001 From: daviddoji Date: Sat, 9 Dec 2023 19:20:54 +0100 Subject: [PATCH] Change location of client_secrets.json --- youtube_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_api.py b/youtube_api.py index af7717f..bf2a03e 100644 --- a/youtube_api.py +++ b/youtube_api.py @@ -50,7 +50,7 @@ def main(): api_service_name = "youtube" api_version = "v3" - client_secret = "/home/david/client_secrets.json" + client_secret = "./client_secrets.json" flow = InstalledAppFlow.from_client_secrets_file( client_secret, scopes)