dart_ipify 1.1.1
This package uses the remote ipify web services in order to get your public IP address or geographical details from any given IP.
Dart Ipify
An unofficial client library for Ipify <https://www.ipify.org/> A Simple Public IP Address API, Likewise a geographical IP address details API.
About ipify
Using ipify is ridiculously simple. You can get your public IP directly or you can get the precise physical location of a given IP address. so if you only have as much as an IP address, you can still find out its geographical details.
Meta
- Author: Khalil Mejdi
- Email: khalil.mejdi
- Status: maintained, active
Purpose
This library makes getting your public IP address or the precise geographical details of a given IP address with the dart language extremely simple using Ipify's API.
Installation
dependencies:
dart_ipify: ^1.1.1
Usage
Using this library is very simple. Here's a simple example:
IP Address API
import 'package:dart_ipify/dart_ipify.dart';
void main() async {
final ipv4 = await Ipify.ipv4();
print(ipv4); // 98.207.254.136
final ipv6 = await Ipify.ipv64();
print(ipv6); // 98.207.254.136 or 2a00:1450:400f:80d::200e
final ipv4json = await Ipify.ipv64(format: Format.JSON);
print(ipv4json); //{"ip":"98.207.254.136"} or {"ip":"2a00:1450:400f:80d::200e"}
// The response type can be text, json or jsonp
}
IP Geolocation API
import 'package:dart_ipify/dart_ipify.dart';
void main() async {
final mygeo = await Ipify.geo('at_apiKeyxxxxxxxxxxxxxxxxxxxxxxx');
print(mygeo.location);
final somegeo = await Ipify.geo('at_apiKeyxxxxxxxxxxxxxxxxxxxxxxx', ip: '8.8.8.8');
print(somegeo);
final balance = await Ipify.balance('at_apiKeyxxxxxxxxxxxxxxxxxxxxxxx');
print(balance);
}
Change Log
All library changes, in descending order.
1.1.1
- Handles no domain responses #3, Baneeishaque
- GitHub actions #4, Bujupah
1.1.0
- Migrating to null-safety.
1.0.2
- Adding GeoLocation API.
- Adding example.
1.0.1
- Supporting multiple platforms.
- Documenting code.
- Adding example.
1.0.0
- First release.