When making a GET request to the API for GoogleDevelopers channel, I'm getting the following result as expected.
Response:
{
"kind": "youtube#channelListResponse",
"etag": "w0k6RzPUxkrdtxJxL2f_V-wMmtE",
"pageInfo": {
"totalResults": 1,
"resultsPerPage": 5
},
"items": [
{
"kind": "youtube#channel",
"etag": "P81a-u1XylztNDFIIotdR2fpRn8",
"id": "UC_x5XG1OV2P6uZZ5FSM9Ttw",
"contentDetails": {
"relatedPlaylists": {
"likes": "",
"favorites": "",
"uploads": "UU_x5XG1OV2P6uZZ5FSM9Ttw"
}
}
}
]
}
When making the request to my own Youtube Channel, Im just getting the following response.
{
"kind": "youtube#channelListResponse",
"etag": "nR8QCUcJvaTfaxr2vzyDGZfMitE",
"pageInfo": {
"totalResults": 0,
"resultsPerPage": 5
}
}
The items Array is missing...
I have no idea why this API Call works for all other channels, but not for my Channel?
I hope somebody can help me out.
Thanks