A swift package/android library to interact with a REST API.
Add https://github.com/NathanFallet/APIRequest.git
to your Swift Package configuration (or using the Xcode menu: File
> Swift Packages
> Add Package Dependency
)
Add the following to your build.gradle
file:
repositories {
mavenCentral()
}
dependencies {
implementation 'me.nathanfallet.apirequest:apirequest:1.0.4'
}
// Import the package
import APIRequest
// When your app starts, set the default configuration
APIConfiguration.current = APIConfiguration(host: "api.example.com")
// And then call your API
// This is an equivalent to get `https://api.example.com/path/to/api?custom=parameter` and parse the response from JSON to a dictionary [String: String]
APIRequest("GET", path: "/path/to/api").with(name: "custom", value: "parameter").execute([String: String].self) { data, status in
// Check the data and status
if let data = data, status == .ok {
// Do what you want with your data
} else {
// Something went wrong, check the value of `status`
}
}
See the full documentation for a complete guide.
// When your app starts, set the default configuration
APIConfiguration.current = APIConfiguration("api.example.com")
// And then call your API
// This is an equivalent to get `https://api.example.com/path/to/api?custom=parameter` and parse the response from JSON
APIRequest("GET", "/path/to/api")
.with("custom", "parameter")
.execute { result, status ->
}
See the full documentation for a complete guide.
Check out the full example project made in a youtube tutorial.
Feel free to make a donation to help the developer to make more great content! Donate now