http://ip-api.com Geolocation API client written in Swift.
- iOS 8.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+
- Xcode 10.2+
- Swift 5.1+
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthageTo integrate IPAPI into your Xcode project using Carthage, specify it in your Cartfile:
github "arturgrigor/IPAPI" ~> 3.0
Run carthage update to build the framework and drag the built IPAPI.framework into your Xcode project.
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapodsCocoaPods 1.1.0+ is required.
To integrate IPAPI into your Xcode project using CocoaPods, specify it in your Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target '<Your Target Name>' do
pod 'IPAPI', '~> 3.0'
endThen, run the following command:
$ pod installThe Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.
Once you have your Swift package set up, adding IPAPI as a dependency is as easy as adding it to the dependencies value of your Package.swift.
dependencies: [
.Package(url: "https://github.com/arturgrigor/IPAPI.git", majorVersion: 3)
]import IPAPI
IPAPI.Service.default.fetch {
if let result = try? $0.get() {
print("Geo IP result \(result).")
}
}import IPAPI
Service.default.fetch(query: "apple.com") {
if let result = try? $0.get() {
print("Geo IP result \(result).")
}
}import IPAPI
Service.default.fetch(fields: [.ip, .latitude, .longitude, .organization]) {
if let result = try? $0.get() {
print("Geo IP result \(result).")
}
}import IPAPI
Service.default.fetch(language: "es") {
if let result = try? $0.get() {
print("Geo IP result \(result).")
}
}*Checkout this page for the available languages.
import IPAPI
Service.default.batch([Service.Request(query: "208.80.152.201",
fields: [.countryName, .countryCode, .latitude, .longitude, .organization, .ip]),
Service.Request(query: "91.198.174.192", language: "es")]) {
if let result = try? $0.get() {
print("Geo IP result \(result).")
}
}In order to use the API via HTTPS you must register for the "Pro" plan to get an API key. After you've done that you can set the API key like this and all your requests will use HTTPS.
import IPAPI
IPAPI.Service(pricingPlan: .pro(apiKey: "test-demo-pro")).fetch {
if let result = try? $0.get() {
print("Geo IP result \(result).")
}
}Let me know if you're using or enjoying this product.