A media RSS feed server correcting the default thumbnails in its articles
Go to file
2022-12-15 13:44:09 +01:00
src Add code from coding session + licenses 2022-12-15 13:44:09 +01:00
.gitignore Add code from coding session + licenses 2022-12-15 13:44:09 +01:00
Cargo.lock Add code from coding session + licenses 2022-12-15 13:44:09 +01:00
Cargo.toml Add code from coding session + licenses 2022-12-15 13:44:09 +01:00
LICENSE-APACHE Add code from coding session + licenses 2022-12-15 13:44:09 +01:00
LICENSE-MIT Add code from coding session + licenses 2022-12-15 13:44:09 +01:00
README.md Add code from coding session + licenses 2022-12-15 13:44:09 +01:00

rss-proxy

A media RSS feed server correcting the default thumbnails in its articles

Currently implemented for DeviantArt

Building

rss-proxy requires Rust and cargo.

For only building the binary in release mode:

$ cargo build --release

Running

In release mode (i.e. optimized):

$ cargo run --release

In debug mode (unoptimized, faster):

$ cargo run

Usage

The server will by default try to use port 80 or 8080 depending on privileges and whether the port is available.

It will then point by default to https://backend.deviantart.com/rss.xml propagating the query string used for describing your RSS feed.

Example

Show pictures in a user's gallery: http://localhost:8080/?type=gallery&q=by:<username>

More examples can be found at DeviantArt's API documentation.

License

This project is dual-licensed under MIT or Apache 2.0