This scoped class provides a method used for getting the information about the current session.

The constructors used for creating an instance of the scoped SimpleSession object are not available. Use the ss.getSession() method instead.

getClientIP()


This method returns the field value containing the IP-address of the client.

Return:

TypeDescription
String or NULLThe IP address value (String) by default.

Example:

const session = ss.getSession();
const ipAddress = session.getClientIP();
ss.info(ipAddress); // Info: 127.0.0.1