Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I use firebase firestore for my desktop app?

I'm using the firebase-ui-android authentication flow for my mobile app. I would like to do the same for my desktop app, but it doesn't seem like there is an equivalent framework; the closest seems to be firebase-ui-web. Now I'm playing with the idea of (ab?)using firebase-ui-web to run locally on the client machine for authentication. However, since firebase-ui-web seems to be aimed at the server I'm a bit wary running it on the client side.

The desktop app is fairly simple, it pretty much only needs to read some firestore data.

What are my options here?

like image 207
deekay42 Avatar asked Nov 05 '18 20:11

deekay42


1 Answers

The only ways to connect with Firebase are by an Android, an iOS and a web app.

There is no support for desktop apps.

But, you can create a native sync service to link your desktop app with Firebase users throught a web service.

like image 146
Alexandre Martin Avatar answered Sep 28 '22 20:09

Alexandre Martin