You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,10 @@
4
4
5
5
This is the official Java client library for the [IPinfo.io](https://ipinfo.io) IP address API, allowing you to look up your own IP address, or get any of the following details for an IP:
6
6
7
-
-[IP geolocation data](https://ipinfo.io/ip-geolocation-api) (city, region, country, postal code, latitude, and longitude)
8
-
-[ASN information](https://ipinfo.io/asn-api) (ISP or network operator, associated domain name, and type, such as business, hosting, or company)
9
-
-[Company data](https://ipinfo.io/ip-company-api) (the name and domain of the business that uses the IP address)
10
-
-[Carrier details](https://ipinfo.io/ip-carrier-api) (the name of the mobile carrier and MNC and MCC for that carrier if the IP is used exclusively for mobile traffic)
7
+
-[IP geolocation data](https://ipinfo.io/ip-geolocation-api) (city, region, country, postal code, latitude, and longitude)
8
+
-[ASN information](https://ipinfo.io/asn-api) (ISP or network operator, associated domain name, and type, such as business, hosting, or company)
9
+
-[Company data](https://ipinfo.io/ip-company-api) (the name and domain of the business that uses the IP address)
10
+
-[Carrier details](https://ipinfo.io/ip-carrier-api) (the name of the mobile carrier and MNC and MCC for that carrier if the IP is used exclusively for mobile traffic)
11
11
12
12
Check all the data we have for your IP address [here](https://ipinfo.io/what-is-my-ip).
13
13
@@ -32,7 +32,7 @@ Dependency:
32
32
<dependency>
33
33
<groupId>io.ipinfo</groupId>
34
34
<artifactId>ipinfo-api</artifactId>
35
-
<version>3.0.0</version>
35
+
<version>3.0.1</version>
36
36
<scope>compile</scope>
37
37
</dependency>
38
38
</dependencies>
@@ -42,7 +42,7 @@ Dependency:
42
42
43
43
##### IP Information
44
44
45
-
````java
45
+
```java
46
46
importio.ipinfo.api.IPinfo;
47
47
importio.ipinfo.api.errors.RateLimitedException;
48
48
importio.ipinfo.api.model.IPResponse;
@@ -63,11 +63,11 @@ public class Main {
63
63
}
64
64
}
65
65
}
66
-
````
66
+
```
67
67
68
68
##### ASN Information
69
69
70
-
````java
70
+
```java
71
71
importio.ipinfo.api.IPinfo;
72
72
importio.ipinfo.api.errors.RateLimitedException;
73
73
importio.ipinfo.api.model.IPResponse;
@@ -88,7 +88,7 @@ public class Main {
88
88
}
89
89
}
90
90
}
91
-
````
91
+
```
92
92
93
93
#### Errors
94
94
@@ -168,7 +168,7 @@ public class Main {
168
168
169
169
#### EU Country Lookup
170
170
171
-
This library provides a system to lookup if a country is a member of the European Union (EU) through
171
+
This library provides a system to lookup if a country is a member of the European Union (EU) through
0 commit comments