Ask HN: Give me recommendations to improve jsonip.com
5 comments
How about
http://jsonip.com/myurl/write/
and
http://jsonip.com/myurl/read/
So I can monitor IP changes of my machines while I'm away?
http://jsonip.com/myurl/write/
and
http://jsonip.com/myurl/read/
So I can monitor IP changes of my machines while I'm away?
Return geoip information. For example:
{
"ip": 204.172.40.10,
"geo": {
"latitude": 86.783273,
"longitude": 92.106578,
"accuracy": 24000
}
}Use a standard jsonp paramter format so that we can use it with jQuery.ajax : jsonip.com/jsonp/?callback=xxx
yes, hook it into geoip, (something like maxmind)
As a quick primer, jsonip.com returns your ip as either a json object, or wrapped in a jsonp callback.
Usage:
http://jsonip.com => {"ip":"your ip"}
http://jsonip.com/cb/ => cb({"ip":"your ip"});
http://jsonip.com/randomgurgltyfurt/ => randomgurgltyfurt({"ip":"your ip"});