Poking at the YouTube v3 API a bit
This commit is contained in:
17
youtube-api-poking/list-playlistitems
Executable file
17
youtube-api-poking/list-playlistitems
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env bash
|
||||
set -o errexit
|
||||
|
||||
main() {
|
||||
local playlist_id="${1}"
|
||||
|
||||
source "$(dirname "${BASH_SOURCE[0]}")/functions.bash"
|
||||
|
||||
__googleapis_http \
|
||||
"${OOM_CLIENT_ID}" \
|
||||
"${OOM_CLIENT_SECRET}" \
|
||||
"${OOM_YOUTUBE_REFRESH_TOKEN}" \
|
||||
GET /youtube/v3/playlistItems \
|
||||
part=snippet mine=true maxResults=50 id=${playlist_id}
|
||||
}
|
||||
|
||||
main "$@"
|
Reference in New Issue
Block a user