In case you can't provide the RSS-feed in the needed format you should contact a support representative so that we can help you to convert the non-RSS feed to the proper format.
Note, we can convert feeds from JSON and HTML formats. Please, prepare feed according to these examples:
JSON format:
{
"title": "Feed title",
"description": "Feed description",
"link": "https://example.com/feed.json",
"language": "en",
"items": [
{
"link": "http://example.com/item-one-link_mandatory_field",
"title": "Item one title (mandatory field)",
"description": "This is description for item one. It is optional field",
"guid": "http://example.com/?id=1_optional_but_recommended_field",
"image": "http://example.com/images/item-one-image_mandatory_field.jpg",
"categories": [
"Example item",
"Optional field",
"Field 'published_date' below is mandatory",
"Field 'updated_date' below is strongly recommended"
],
"published_date": "2017-05-03T12:34:56.789Z",
"updated_date": "2017-05-05T23:45:01.234Z"
},
{
...
}
]
}
HTML format:
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<div class="piano-esp-feed-title">Feed title</div>
<div class="piano-esp-feed-description">Feed description</div>
<a class="piano-esp-feed-link" href="https://example.com/feed.html">Feed link</a>
<div class="piano-esp-item">
<a class="piano-esp-link" href="http://example.com/item-one-link_mandatory_field">Item link</a>
<div class="piano-esp-title">Item one title (mandatory field)</div>
<div class="piano-esp-description">This is description for item one. It is optional field</div>
<div class="piano-esp-guid">http://example.com/?id=1_optional_but_recommended_field</div>
<img class="piano-esp-image" src="http://example.com/images/item-one-image_mandatory_field.jpg"></img>
<ul>
<li class="piano-esp-category_item">Example item</li>
<li class="piano-esp-category_item">Optional field</li>
<li class="piano-esp-category_item">Field 'published_date' below is mandatory</li>
<li class="piano-esp-category_item">Field 'updated_date' below is strongly recommended</li>
</ul>
<div class="piano-esp-published_date">2017-05-03T12:34:56.789Z</div>
<div class="piano-esp-updated_date">2017-05-05T23:45:01.234Z</div>
</div>
<div class="piano-esp-item">
...
</div>
</body>
</html>