An open API service indexing awesome lists of open source software.

https://github.com/cestef/spotify-lyrics-proxy


https://github.com/cestef/spotify-lyrics-proxy

Last synced: 7 days ago
JSON representation

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
```