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
- Host: GitHub
- URL: https://github.com/mtchavez/authy-go
- Owner: mtchavez
- License: mit
- Created: 2015-02-10T01:21:32.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-12T16:45:15.000Z (over 11 years ago)
- Last Synced: 2025-03-29T14:32:26.058Z (about 1 year ago)
- Topics: authy, authy-api, go
- Language: Go
- Size: 164 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Authy API Go package
[](https://github.com/mtchavez/authy-go/releases)
[](https://travis-ci.org/mtchavez/authy-go)
[](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