(DataFlex) Find My External Public IP Address
To find your external public IP address (not your LAN IP address, such as 192.168.1.* or 172.16.16.*, etc), your application would need to send a request to an HTTP server that can report back on the origin IP address. You can easily write a simple script on your own web server to do it, or you can use a service such as ipify.org.
This example shows how to send a request to the ipify.org endpoint to get your public IP address. For more information, see https://www.ipify.org/
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
String sMy_ip_address
String sTemp1
Boolean bTemp1
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
Get ComQuickGetStr Of hoHttp "https://api.ipify.org" To sMy_ip_address
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Showln "My Public IP Address: " sMy_ip_address
End_Procedure
|