Skip to content

Commit b725d15

Browse files
yoshi-automationBenjamin E. Coe
authored andcommitted
fix(youtube): update the API
#### youtube:v3 The following keys were changed: - resources.liveBroadcasts.methods.insertCuepoint.scopes
1 parent c4f065a commit b725d15

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

discovery/youtube-v3.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1416,6 +1416,8 @@
14161416
"$ref": "Cuepoint"
14171417
},
14181418
"scopes": [
1419+
"https://www.googleapis.com/auth/youtube",
1420+
"https://www.googleapis.com/auth/youtube.force-ssl",
14191421
"https://www.googleapis.com/auth/youtubepartner"
14201422
]
14211423
},
@@ -3829,7 +3831,7 @@
38293831
}
38303832
}
38313833
},
3832-
"revision": "20221026",
3834+
"revision": "20221220",
38333835
"rootUrl": "https://youtube.googleapis.com/",
38343836
"schemas": {
38353837
"AbuseReport": {

src/apis/youtube/v3.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9094,7 +9094,11 @@ export namespace youtube_v3 {
90949094
* async function main() {
90959095
* const auth = new google.auth.GoogleAuth({
90969096
* // Scopes can be specified either as an array or as a single, space-delimited string.
9097-
* scopes: ['https://www.googleapis.com/auth/youtubepartner'],
9097+
* scopes: [
9098+
* 'https://www.googleapis.com/auth/youtube',
9099+
* 'https://www.googleapis.com/auth/youtube.force-ssl',
9100+
* 'https://www.googleapis.com/auth/youtubepartner',
9101+
* ],
90989102
* });
90999103
*
91009104
* // Acquire an auth client, and bind it to all future calls

0 commit comments

Comments
 (0)