Which ports have to be open to communicate with Firebase Database (not FCM messaging)?

前端 未结 1 975
遇见更好的自我
遇见更好的自我 2021-01-15 19:16

I have written a Windows service in C# which connects to the Firebase Database and stores data. For connection and database communication, I use a NuGet Packages called \"Fi

1条回答
  •  别那么骄傲
    2021-01-15 19:31

    Firebase Authentication and the Firebase Realtime Database both use HTTPS to communicate between the client and the server. This means that all communication goes over port 443.

    The database communication uses web sockets over port 443 when possible. You might want to check if the firewall does something to specifically block web sockets.

    0 讨论(0)
提交回复
热议问题