From b512f2e286f0665c7ce515b80411f4aa1587ca59 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Thu, 20 May 2021 15:13:12 +0100 Subject: [PATCH] include rss example json --- rss/examples.json | 63 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 rss/examples.json diff --git a/rss/examples.json b/rss/examples.json new file mode 100644 index 0000000..3d654e8 --- /dev/null +++ b/rss/examples.json @@ -0,0 +1,63 @@ + +{ + "add": [{ + "title": "Add a new feed", + "description": "Add a new rss feed to the crawler", + "request": { + "name": "bbc", + "feed": "http://feeds.bbci.co.uk/news/rss.xml", + "category": "news" + }, + "response": {} + }], + "remove": [{ + "title": "Remove a feed", + "description": "Remove an rss feed from the crawler", + "request": { + "name": "bbc" + }, + "response": {} + }], + "list": [{ + "title": "List rss feeds", + "description": "List the saved rss feeds", + "request": {}, + "response": { + "feeds": [ + { + "id": "micro/asim/18882020881032690", + "name": "bbc", + "url": "http://feeds.bbci.co.uk/news/rss.xml", + "category": "news" + } + ] + } + }], + "feed": [{ + "title": "Read a feed", + "description": "Read an rss feed by name", + "request": { + "name": "bbc" + }, + "response": { + "entries": [ + { + "id": "eae9563e0a017c02ba6fcb38bbb6f5d5", + "feed": "http://feeds.bbci.co.uk/news/rss.xml", + "link": "https://www.bbc.co.uk/sport/cricket/57190558", + "title": "Jofra Archer: England bowler to have surgery on elbow injury", + "summary": "England fast bowler Jofra Archer will have surgery on his troublesome right elbow on Friday - with a timeframe on his recovery yet to be given.", + "date": "2021-05-20T14:00:08Z" + }, + { + "id": "bf774b0274930dd9efcfc5182cc41e48", + "feed": "http://feeds.bbci.co.uk/news/rss.xml", + "link": "https://www.bbc.co.uk/sport/football/57188305", + "title": "Home nations openers to be shown live on BBC - how to follow Euro 2020 ", + "summary": "The BBC will give audiences 24/7 access to all of the action, analysis, insight and entertainment from this summer's European Championship.", + "date": "2021-05-20T13:37:21Z" + } + ] + } + }] +}