mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-18 13:11:37 +00:00
Some checks failed
Build and test GAM / build (Win64, build, 7, VC-WIN64A, windows-2022) (push) Has been cancelled
Build and test GAM / build (aarch64, build, 2, linux-aarch64, [self-hosted linux arm64]) (push) Has been cancelled
Build and test GAM / build (aarch64, build, 4, linux-aarch64, [self-hosted linux arm64], yes) (push) Has been cancelled
Build and test GAM / build (aarch64, build, 6, darwin64-arm64, macos-14) (push) Has been cancelled
Build and test GAM / build (x86_64, build, 1, linux-x86_64, ubuntu-22.04) (push) Has been cancelled
Build and test GAM / build (x86_64, build, 3, linux-x86_64, ubuntu-22.04, yes) (push) Has been cancelled
Build and test GAM / build (x86_64, build, 5, darwin64-x86_64, macos-13) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 10, ubuntu-24.04, 3.10) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 11, ubuntu-24.04, 3.11) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 8, ubuntu-24.04, 3.13) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 9, ubuntu-24.04, 3.9) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Check for Google Root CA Updates / check-apis (push) Has been cancelled
Build and test GAM / merge (push) Has been cancelled
Build and test GAM / publish (push) Has been cancelled
147 lines
6.0 KiB
Markdown
147 lines
6.0 KiB
Markdown
!!# Users - YouTube
|
|
- [API documentation](#api-documentation)
|
|
- [Notes](#notes)
|
|
- [Definitions](#definitions)
|
|
- [Display Selected YouTube Channels](#display-selected-youtube-channels)
|
|
- [Display Owned YouTube Channels](#display-owned-youtube-channels)
|
|
|
|
## API documentation
|
|
* https://developers.google.com/youtube/v3/docs/channels/list
|
|
|
|
## Notes
|
|
To use these commands you must add the 'YouTube API' to your project and update your service account authorization.
|
|
```
|
|
gam update project
|
|
gam user user@domain.com update serviceaccount
|
|
```
|
|
|
|
## Definitions
|
|
* [`<UserTypeEntity>`](Collections-of-Users)
|
|
```
|
|
<BCP47LanguageCode> ::=
|
|
ar-sa| # Arabic Saudi Arabia
|
|
cs-cz| # Czech Czech Republic
|
|
da-dk| # Danish Denmark
|
|
de-de| # German Germany
|
|
el-gr| # Modern Greek Greece
|
|
en-au| # English Australia
|
|
en-gb| # English United Kingdom
|
|
en-ie| # English Ireland
|
|
en-us| # English United States
|
|
en-za| # English South Africa
|
|
es-es| # Spanish Spain
|
|
es-mx| # Spanish Mexico
|
|
fi-fi| # Finnish Finland
|
|
fr-ca| # French Canada
|
|
fr-fr| # French France
|
|
he-il| # Hebrew Israel
|
|
hi-in| # Hindi India
|
|
hu-hu| # Hungarian Hungary
|
|
id-id| # Indonesian Indonesia
|
|
it-it| # Italian Italy
|
|
ja-jp| # Japanese Japan
|
|
ko-kr| # Korean Republic of Korea
|
|
nl-be| # Dutch Belgium
|
|
nl-nl| # Dutch Netherlands
|
|
no-no| # Norwegian Norway
|
|
pl-pl| # Polish Poland
|
|
pt-br| # Portuguese Brazil
|
|
pt-pt| # Portuguese Portugal
|
|
ro-ro| # Romanian Romania
|
|
ru-ru| # Russian Russian Federation
|
|
sk-sk| # Slovak Slovakia
|
|
sv-se| # Swedish Sweden
|
|
th-th| # Thai Thailand
|
|
tr-tr| # Turkish Turkey
|
|
zh-cn| # Chinese China
|
|
zh-hk| # Chinese Hong Kong
|
|
zh-tw # Chinese Taiwan
|
|
|
|
<YouTubeChannelID> ::= <String>
|
|
<YouTubeChannelIDList> ::= "<YouTubeChannelID>(,<YouTubeChannelID>)*"
|
|
|
|
<YouTubeChannelFieldName> ::=
|
|
brandingsettings|
|
|
contentdetails|
|
|
contentownerdetails|
|
|
id|
|
|
localizations|
|
|
snippet|
|
|
statistics|
|
|
status|
|
|
topicdetails
|
|
<YouTubeChannelFieldNameList> ::= "<YouTubeChannelFieldName>(,<YouTubeChannelFieldName>)*"
|
|
```
|
|
## Display Selected YouTube Channels
|
|
Display YouTube channels selected by ID.
|
|
```
|
|
gam <UserTypeEntity> show youtubechannels
|
|
(mine|
|
|
(ids|channels <YouTubeChannelIDList>)|
|
|
(forusername <String>)|
|
|
(managedbyme <String>))
|
|
[languagecode <BCP47LanguageCode>]
|
|
[allfields|(fields <YouTubeChannelFieldNameList>)]
|
|
[formatjson]
|
|
```
|
|
By default, only the YouTube channel ID is displayed; use `allfields|fields` to select additional fields for display.
|
|
|
|
By default, Gam displays the YouTube channels as an indented list of keys and values.
|
|
* `formatjson` - Display the YouTube channels in JSON format
|
|
|
|
```
|
|
gam <UserTypeEntity> print youtubechannels [todrive <ToDriveAttribute>*]
|
|
(mine|
|
|
(ids|channels <YouTubeChannelIDList>)|
|
|
(forusername <String>)|
|
|
(managedbyme <String>))
|
|
[languagecode <BCP47LanguageCode>]
|
|
[allfields|(fields <YouTubeChannelFieldNameList>)]
|
|
[formatjson [quotechar <Character>]]
|
|
```
|
|
By default, only the YouTube channel ID is displayed; use `allfields|fields` to select additional fields for display.
|
|
|
|
By default, Gam displays the information as columns of fields; the following option causes the output to be in JSON format,
|
|
* `formatjson` - Display the fields in JSON format.
|
|
|
|
By default, when writing CSV files, Gam uses a quote character of double quote `"`. The quote character is used to enclose columns that contain
|
|
the quote character itself, the column delimiter (comma by default) and new-line characters. Any quote characters within the column are doubled.
|
|
When using the `formatjson` option, double quotes are used extensively in the data resulting in hard to read/proces output.
|
|
The `quotechar <Character>` option allows you to choose an alternate quote character, single quote for instance, that makes for readable/procesable output.
|
|
`quotechar` defaults to `gam.cfg/csv_output_quote_char`. When uploading CSV files to Google, double quote `"` should be used.
|
|
|
|
## Display Owned YouTube Channels
|
|
Display YouTube channels owned by a user.
|
|
```
|
|
gam <UserTypeEntity> show youtubechannels
|
|
[languagecode <BCP47LanguageCode>]
|
|
[allfields|(fields <YouTubeChannelFieldNameList>)]
|
|
[formatjson]
|
|
```
|
|
By default, only the YouTube channel ID is displayed; use `allfields|fields` to select additional fields for display.
|
|
|
|
By default, Gam displays the YouTube channels as an indented list of keys and values.
|
|
* `formatjson` - Display the YouTube channels in JSON format
|
|
|
|
```
|
|
gam <UserTypeEntity> print youtubechannels [todrive <ToDriveAttribute>*]
|
|
(mine|
|
|
(ids|channels <YouTubeChannelIDList>)|
|
|
(forusername <String>)|
|
|
(managedbyme <String>))
|
|
[languagecode <BCP47LanguageCode>]
|
|
[allfields|(fields <YouTubeChannelFieldNameList>)]
|
|
[formatjson [quotechar <Character>]]
|
|
```
|
|
By default, only the YouTube channel ID is displayed; use `allfields|fields` to select additional fields for display.
|
|
|
|
By default, Gam displays the information as columns of fields; the following option causes the output to be in JSON format,
|
|
* `formatjson` - Display the fields in JSON format.
|
|
|
|
By default, when writing CSV files, Gam uses a quote character of double quote `"`. The quote character is used to enclose columns that contain
|
|
the quote character itself, the column delimiter (comma by default) and new-line characters. Any quote characters within the column are doubled.
|
|
When using the `formatjson` option, double quotes are used extensively in the data resulting in hard to read/proces output.
|
|
The `quotechar <Character>` option allows you to choose an alternate quote character, single quote for instance, that makes for readable/procesable output.
|
|
`quotechar` defaults to `gam.cfg/csv_output_quote_char`. When uploading CSV files to Google, double quote `"` should be used.
|
|
|