A week ago, I started using the YouTube API v3 and was able to get 13 elements from the API using this URL:
https://www.googleapis.com/youtube/v3/search?key={MyKey}&channelId={AChannelId}&part=snippet,id&order=date&maxResults=5
Today I used this exact url and now it returns:
// 20140828161458 // https://www.googleapis.com/youtube/v3/search?key={MyKey}&channelId={AChannelId}&>part=snippet,id&order=date&maxResults=5 { "kind": "youtube#searchListResponse", "etag": "\"gLjvtM18QUCicnbwPLo7vn_YIlg/Z7muB3yLsIIdSeQTKlRVObzSk8M\"", "pageInfo": { "totalResults": 0, "resultsPerPage": 5 }, "items": [ ] }
This way the items are not returned, but should be 13. I used a different channelId to make sure the problem is not in channelId, but it also returned nothing.
I checked the google blog but no change was mentioned. Does anyone have an idea what might be wrong?
source share