https://github.com/cestef/spotify-lyrics-proxy
https://github.com/cestef/spotify-lyrics-proxy
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cestef/spotify-lyrics-proxy
- Owner: cestef
- Created: 2024-01-30T13:02:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-31T14:07:05.000Z (over 2 years ago)
- Last Synced: 2025-02-23T05:28:01.813Z (over 1 year ago)
- Language: Rust
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spotify-lyrics-proxy
A simple proxy between the private Spotify API (Musixmatch) and your application.
## Usage
### Configuration
All configuration is done via the `config.toml` file.
```toml
# Required - List of cookies (`sp_dc`) to use
cookies = [
"1234567890abcdef",
"abcdef1234567890",
]
# Optional - List of API keys to use (if not provided, the proxy will be open to anyone)
api_keys = ["smash-your-keyboard-here"]
# Optional (default: 3000) - The port to listen on
port = 3000
```