feat(youtube): add youtube integration

This commit is contained in:
Rıdvan Akca
2023-10-16 16:24:37 +03:00
parent 794b4cf26a
commit fb6e46bd69
14 changed files with 252 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
const authScope: string[] = [
'https://www.googleapis.com/auth/youtube',
'https://www.googleapis.com/auth/youtube.readonly',
'https://www.googleapis.com/auth/youtube.upload',
'https://www.googleapis.com/auth/userinfo.email',
'https://www.googleapis.com/auth/userinfo.profile',
];
export default authScope;