IPstack
This module integrates with the IPstack API to identify and locate website visitors based on their IP addresses. It supports HTTPS and caching, requiring an API access key for configuration. The module can be used by developers to retrieve visitor information programmatically or tested via a dedicated page.
This module allows site developers to use IPstack API (former FreeGeoIP). This API use for locate and identify website visitors by IP address. Support HTTPS. Support caching.
You need obtain API Access Key from ipstack.com and save the key to module configuration. After that you can test getting of information using the module testing page.
Support testing page like /admin/config/system/ipstack/test/page?ip=[IP address].
Related modules
Usage:
Use Dependency Injection for getting ipstack service or use
\Drupal::service('ipstack').
$ip = '134.201.250.155';
$ipstack = \Drupal::service('ipstack');
$ipstack->setIp($ip)
->setFields('country_code')
->setOutput('json');
$data = $ipstack->getData();
if (isset($data['data'])) {
$country_code = $data['data']->decode()->country_code;
}
Detail documentation see at ipstack site.
πΊπ¦ This module is maintained by Ukrainian developers.Please consider supporting Ukraine in a fight for their freedom and safety of Europe.