# README
RSS-feed-aggregator-server
REST Server api in GO, aggregates RSS feed, hosted here!
Check out client) repository.
Table of contents
Prerequisites
- Go 1.16
Setup
git clone [email protected]:anaswaratrajan/RSS-feed-aggregator-server.git
cd RSS-feed-aggregator-server
go get github.com/araddon/dateparse
go get github.com/labstack/echo/v4
PORT=5000 go run server go
Endpoints
-
POST
/v1/rss-feed/
-
POST
/v1/aggregate-feed/
Usage
Examples -
curl RSS-feed
curl -X POST http://localhost:5000/v1/rss-feed/ \
-d '{"feedURL":"https://home.cern/api/news/news/feed.rss"}'
curl aggregated RSS-feed
curl -X POST http://localhost:5000/v1/aggregate-feed/ \
-d '{"feedURLs":["https://home.cern/api/news/news/feed.rss", "https://www.nasa.gov/rss/dyn/breaking_news.rss"]}'
Repository-Structure
.
├── bin
│ └── ..
├── go.mod
├── go.sum
├── handler
│ └── get_feed.go
├── LICENSE
├── Procfile
├── README.md
├── server.go
.
.
# Packages
No description provided by the author