Castor Mann
Castor Mann

Reputation: 102

Is it possible to get the public ip address from the sender of an http(s) request to the firebase rest api?

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

Answers (1)

Doug Stevenson
Doug Stevenson

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

Related Questions