Answers for "api.ipify"

0

ipify api

<script type="application/javascript">
  function getIP(json) {
    document.write("My public IP address is: ", json.ip);
  }
</script>

<script type="application/javascript" src="https://api.ipify.org?format=jsonp&callback=getIP"></script>
Posted by: Guest on August-05-2020
0

apiipify

# This example requires the requests library be installed.  You can learn more
# about the Requests library here: http://docs.python-requests.org/en/latest/
from requests import get

ip = get('https://api.ipify.org').text
print('My public IP address is: {}'.format(ip))
Posted by: Guest on March-14-2020
0

apiipify

var http = require('http');

http.get({'host': 'api.ipify.org', 'port': 80, 'path': '/'}, function(resp) {
  resp.on('data', function(ip) {
    console.log("My public IP address is: " + ip);
  });
});
Posted by: Guest on March-14-2020

Code answers related to "api.ipify"

Code answers related to "Javascript"

Browse Popular Code Answers by Language