Guest User

Untitled

a guest
Jun 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. {
  2. "host": {
  3. "ipv4": "123.45.67.89",
  4. "hostname": "the.host.name", // or `null` if reverse DNS lookup failed
  5. "address": {
  6. /* if IP is in a private range (e.g. 192.168.0.1) */
  7. "city": "private",
  8. "country": "private"
  9. "geo": {
  10. "latitude": null,
  11. "longitude": null
  12. }
  13. /* otherwise
  14. (depending on geocoding accuracy, any of these may be `null`) */
  15. "city": "The City",
  16. "country": "THE COUNTRY (CODE)",
  17. "geo": {
  18. "latitude": 12.3456,
  19. "longitude": 34.5678
  20. }
  21. }
  22. }
  23. }
Add Comment
Please, Sign In to add comment