iProov / ios-api-client

iOS Swift API Client for iProov's REST API v2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Warning

Starting June 2022, this repository is no longer being maintained. The iProov iOS API Client is now made available directly as part of the iProov iOS Biometrics SDK.

You should upgrade your Podfile from:

pod 'iProovAPIClient', :git => 'https://github.com/iProov/ios-api-client.git'

to:

pod 'iProovAPIClient', :podspec => 'https://raw.githubusercontent.com/iProov/ios/master/iProovAPIClient/iProovAPIClient.podspec'

For further details, see the Upgrade Guide for SDK v9.4.


iProov iOS API Client

Introduction

The iProov iOS API Client is a simple wrapper for the iProov REST API v2 written in Swift and using Alamofire. We also have an Android API client available here.

Important security notice

In production, the iProov REST API should only ever be called directly from your back-end, however this library is designed to help you with debugging/evaluating the iProov iOS SDK, to get up-and-running quickly with a pure on-device demo.

Use of the iOS API Client requires providing it with your API secret. You should never embed your API secret within a production app.

...Although, if by any chance you happen to use Swift on your back-end then you can probably use this code on your server, with just a few modifications (for example, you will need to handle images without UIKit).

Installation

The iOS API Client is distributed as a Cocoapods dependency. Simply add the following line to your Podfile:

pod 'iProovAPIClient', :git => 'https://github.com/iProov/ios-api-client.git'

And then run pod install.

Supported functionality

  • getToken() - Get an enrol/verify token.
  • enrolPhoto() - Once you have an enrolment token, you can enrol a photo against it.
  • validate() - Validates an existing token.
  • enrolPhotoAndGetVerifyToken() - A helper function which chains together getToken() for the enrolment token, enrolPhoto() to enrol the photo, and then getToken() for the verify token, which you can then use to launch the SDK.

You can find the API-calling code here.

Example

Example of using iProov API Client together with iProov to get a verify token for an existing user and then launch the iProov SDK to perform the verification using Genuine Presence Assurance:

import iProovAPIClient
import iProov

let apiClient = APIClient(baseURL: "https://eu.rp.secure.iproov.me",
                          apiKey: "{{ Your API key }}",
                          secret: "{{ Your API secret }}")

apiClient.getToken(assuranceType: .genuinePresence,
                   type: .verify,
                   userID: "user@example.com") { result in

    switch result {
    case let .success(token):

        IProov.launch(streamingURL: "https://eu.rp.secure.iproov.me",
                      token: token) { status in
            print(status)
        }

    case let .failure(error):
        print(error)
    }
}

License

The iProov iOS API Client is licensed under the BSD-3 license.

About

iOS Swift API Client for iProov's REST API v2

License:Other


Languages

Language:Swift 94.7%Language:Ruby 5.3%