1

I'm using Firebase in a side project that requires authentication using Facebook, Twitter, Google and Twitch. Unfortunately, Firebase Auth doesn't support authentication using Twitch out of the box. I would like to know the best approach to solve the problem: can I use Firebase Auth & a Custom Auth system only for Twitch?

TylerH
  • 20,799
  • 66
  • 75
  • 101
user14288887
  • 55
  • 1
  • 4

1 Answers1

3

Firebase supports signing in with any provider, as long as you are willing to write the code for it. The process is pretty well documented in a page called creating custom tokens.

If you're looking for samples for other providers, have a look at the functions-samples repo, which contains a.o. samples for signing in with LinkedIn, Okta, and Spotify.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807