Search.../

ip

Returns the IP address of the client who called the HTTP function.

Type:

stringRead Only

Was this helpful?

Get the IP from a call to a HTTP function

Copy Code
1// In http-functions.js
2
3export function use_myFunction(request) {
4
5 let requestIp = request.ip; // "255.255.255.255"
6
7}