Reputation: 102
I'm currently working on a Godot multiplayer project where players will make HTTP(s) requests to a REST API I have set up with Firebase's cloud firestore database. I'm wondering if it is possible to get the IP address of whoever sent the request, and if so, how?
Upvotes: 0
Views: 288
Reputation: 317710
The database REST API is not going to reflect back to you any IP addresses. You will need to instead provide your own backend API for the clients to call if you want to collect their IPs.
Upvotes: 1