3

After the announcement of Flutter v2.10, I start working on my desktop application and I want to implement firebase authentication but unfortunately, firebase_auth packages don't support desktop till now so is there any way to authenticate the user with firebase in a desktop application.

Since we have desktop support so I planning to authenticate on the web and after authentication redirect again on the desktop application but I don't know how this works anyone has any idea about this or any other way?

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
Rohit Singh
  • 111
  • 5
  • Hi, for anyone who is interested in the official flutterfire desktop. please upvote for the feature request in the link below. thanx! https://firebase.uservoice.com/forums/948424-general/suggestions/46591750-desktop-windows-linux-macos-support-for-flutte – HW Kim May 31 '23 at 14:50

1 Answers1

4

If you're on a platform for which no Firebase Authentication SDK is available, you can call its REST APIs instead. This can be done from any platform that can call HTTP endpoints, including Flutter.

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