16 lines
318 B
Bash
Executable File
16 lines
318 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -o errexit
|
|
|
|
main() {
|
|
source "$(dirname "${BASH_SOURCE[0]}")/functions.bash"
|
|
|
|
__googleapis_http \
|
|
"${OOM_CLIENT_ID}" \
|
|
"${OOM_CLIENT_SECRET}" \
|
|
"${OOM_YOUTUBE_REFRESH_TOKEN}" \
|
|
GET /youtube/v3/channels \
|
|
part=contentDetails mine=true maxResults=50
|
|
}
|
|
|
|
main "$@"
|