An open API service indexing awesome lists of open source software.

https://github.com/mtchavez/authy-go

Go package to access the Authy API
https://github.com/mtchavez/authy-go

authy authy-api go

Last synced: 12 months ago
JSON representation

Go package to access the Authy API

Awesome Lists containing this project

README

          

# Authy API Go package
[![Latest Version](http://img.shields.io/github/release/mtchavez/authy-go.svg?style=flat-square)](https://github.com/mtchavez/authy-go/releases)
[![Build Status](https://travis-ci.org/mtchavez/authy-go.svg)](https://travis-ci.org/mtchavez/authy-go)
[![Go Documentation](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/mtchavez/authy-go/authy)

Authy API for Developers to add two factor authentication to your apps. This package
implements the API endpoints found [in the docs](http://docs.authy.com/).

## Install

`go get -u github.com/mtchavez/authy-go/authy`

## Usage and Documentation

Examples can all be found at [Go Doc](http://godoc.org/github.com/mtchavez/authy-go/authy)
as well as the documentation for everything.

Authy [getting started](https://www.authy.com/help/getting-started) is a good place
to get an introduction to the API as a whole. And [the docs](http://docs.authy.com/) for
the entire API may be usefull as well.

## Tests

All the tests are example tests that hit the Sandbox API endpoint. You can run them
with:

`go test ./...`

The tests will need an internet connection as they are doing live API Sandbox calls.

## TODO

* DRY things up
* Add example app integration