APIRequest

1.3.5

A swift package/android library to interact with a REST API.
nathanfallet/APIRequest

What's New

APIRequest.swift v1.3.5

2022-11-02T14:48:16Z

Fixing No such module 'FoundationNetworking'

APIRequest

License Issues Pull Requests Code Size CodeFactor Open Source Helpers

A swift package to interact with a REST API

Installation

Add https://github.com/GroupeMINASTE/APIRequest.swift.git to your Swift Package configuration (or using the Xcode menu: File > Swift Packages > Add Package Dependency)

Usage

// 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.

Examples

Full example project

Check out the full example project made in a youtube tutorial.

Delta: Math helper

HiberLink

Donate to the developer

Feel free to make a donation to help the developer to make more great content! Donate now

Android version

This package is also available for Android: APIRequest.java

Description

  • Swift Tools 5.2.0
View More Packages from this Author

Dependencies

  • None
Last updated: Fri Mar 15 2024 05:49:08 GMT-0900 (Hawaii-Aleutian Daylight Time)