Hi all
I'm trying to get information about the user country and currency through his IP address:
the result is : {"error": true, "reason": "RateLimited", "message": "Please contact or sign-up for IP Location @ https://ipapi.co"}
Note that the site does not require login or API.
I'm trying to get information about the user country and currency through his IP address:
B4X:
Dim job4 As HttpJob
job4.Initialize("", Me)
job4.Download("https://ipapi.co/102.125.203.109/json/")
ProgressDialogShow("please wait ..")
Wait For (job4) JobDone(job4 As HttpJob)
If job4.Success Then
res = job4.GetString
Log(res)
End If
the result is : {"error": true, "reason": "RateLimited", "message": "Please contact or sign-up for IP Location @ https://ipapi.co"}
Note that the site does not require login or API.