I want to get all channels that I have on a youtube account.
For example I have 3 channels on a account.
What I've done:
- Read the documentation on https://developers.google.com/youtube/v3/docs/channels/list.
- Authenticate with my account
- Send GET request to GET https://www.googleapis.com/youtube/v3/channels?part=snippet&mine=true&key={YOUR_API_KEY}
- I got success response, without error. But I only get a channel. I expected to get all my channels (3 channels).
Is it possible to get all my channels? If possible what should I do to get it?