Categorygithub.com/uw-labs/go-onfido
repositorypackage
1.0.0
Repository: https://github.com/uw-labs/go-onfido.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

go-onfido CircleCI Go Report Card

Client for the Onfido API

go-doc

This library was built for Utility Warehouse internal projects, so priority was given to supporting the features we needed. If the library is missing a feature from the API, raise an issue or ideally open a PR, however please understand that this library is not expected to receive any ongoing support unless required by Utility Warehouse.

Installation

To install go-onfido, use go get:

go get github.com/uw-labs/go-onfido

Usage

First you're going to need to instantiate a client (grab your sandbox API key)

client := onfido.NewClient("test_123")

Or you can instantiate usign the env variable ONFIDO_TOKEN

client, err := onfido.NewClientFromEnv()

Now checkout some of the examples