Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/oliveroneill/firebase-spotify-auth-example
- Owner: oliveroneill
- License: mit
- Created: 2019-01-07T11:07:12.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T11:29:28.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T07:41:39.861Z (25 days ago)
- Topics: firebase, firebase-auth, spotify
- Language: HTML
- Homepage:
- Size: 321 KB
- Stars: 11
- Watchers: 2
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```