Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/oliveroneill/firebase-spotify-auth-example

Firebase custom auth with Spotify
https://github.com/oliveroneill/firebase-spotify-auth-example

firebase firebase-auth spotify

Last synced: 9 days ago
JSON representation

Firebase custom auth with Spotify

Awesome Lists containing this project

README

        

# Firebase Custom Authentication Example using Spotify

A simple example of using Spotify as the auth provider for Firebase.
Your Spotify username will be stored as a user in Firebase.

## Installation
Create a file called `config.js` in `public/`. This should define firebase and
spotify configuration as follows:
```javascript
const firebaseConfig = {
apiKey: "",
authDomain: "",
projectId: "",
};

const spotifyConfig = {
clientId: '',
redirectUri: '',
};
```

## Deploy
```bash
firebase deploy
```