"mitchstein" wrote:
So, it passes jsonlint...
But when I add it to the channel I get
"The feed URL(s) could not be validated.
There was a transport-level error - (Unknown ERROR)."
I've found the reason for the "transport-level error".
I gave you some bad code. I thought it adhered to the spec, but after taking another look, it turns out that "series" should be an array of objects, not a single object. I'm surprised it even worked with one video with that code.
I was thrown off initially by DP's crappy naming conventions. They just put an "s" on the end of any field name that should be an array, e.g. episode => episodes; season => seasons. Problem is that doesn't work if the word already ends in "s", unless they were to use "seriess". They really should have named them episodeList, seasonList, seriesList, etc. And of course - what a stupid error message!
Here's the updated code:
{
"providerName": "Acme Productions",
"lastUpdated": "2015-11-11T22:21:37+00:00",
"language": "en",
"series": [
{
"id": "1509428502952",
"title": "The Amazing Series with Seasons!",
"seasons": [
{
"seasonNumber": 1,
"episodes": [
{
"id": "1509428502952",
"title": "The Amazing First Episode Title",
"content": {
"dateAdded": "2015-11-11T22:21:37+00:00",
"videos": [
{
"url": "https://example.org/cdn/videos/1509428502952",
"quality": "UHD",
"videoType": "HLS"
}
],
"duration": 1290
},
"thumbnail": "https://example.org/cdn/thumbnails/1509428502952/1",
"episodeNumber": 1,
"releaseDate": "2015-11-11",
"shortDescription": "Episode 1"
},
{
"id": "1509428502953",
"title": "The Amazing Second Episode Title",
"content": {
"dateAdded": "2015-11-11T22:21:37+00:00",
"videos": [
{
"url": "https://example.org/cdn/videos/1509428502952",
"quality": "UHD",
"videoType": "HLS"
}
],
"duration": 1290
},
"thumbnail": "https://example.org/cdn/thumbnails/1509428502952/1",
"episodeNumber": 2,
"releaseDate": "2015-11-11",
"shortDescription": "Episode 2"
},
{
"id": "1509428502954",
"title": "The Amazing Third Episode Title",
"content": {
"dateAdded": "2015-11-11T22:21:37+00:00",
"videos": [
{
"url": "https://example.org/cdn/videos/1509428502952",
"quality": "UHD",
"videoType": "HLS"
}
],
"duration": 1290
},
"thumbnail": "https://example.org/cdn/thumbnails/1509428502952/1",
"episodeNumber": 3,
"releaseDate": "2015-11-11",
"shortDescription": "Episode 3"
}
]
}
],
"genres": [
"educational",
"science fiction",
"thriller"
],
"thumbnail": "https://example.org/cdn/thumbnails/1509428502952/1",
"releaseDate": "2015-11-11",
"shortDescription": "Wondrous series seasons."
}
]
}
Good luck. Hope it gets you over the next hurdle.