cancel
Showing results for 
Search instead for 
Did you mean: 

IP address of the client in Fiori Controller

Hello everyone,

I need to get IP address of a client in the SAP Fiori App opened in chrome/firefox/IE and when doing a $.get() query to my JAVA Back end, I need to add this IP address as an attribute. I needed to get his wireless IP and Ethernet IP. I don't want to use external libraries to do the same.

Thanks in Advance

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

Hello everyone, I found below link useful (IP Address requests for WebRTC) URL: https://github.com/diafygi/webrtc-ips Hope it helps someone Regards Santhosh Reddy M

Answers (2)

Answers (2)

former_member190010
Contributor
0 Kudos

Hi Santosh,

You could obtain the ip address simple doing an ajax call using jquery.

$.get("http://ipinfo.io", function(response) {
  alert
(response.ip);
}, "jsonp")


Best regards,

Emanuel

SUMANTH2
Participant
0 Kudos

Hi Santhosh,

Did you find any standard libraries for this requirement. I am also looking for options to capture device details mainly IP Address.

Thanks

Sumanth