8000 GitHub - lilayoung/authy: Elixir library access to the Authy API
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

lilayoung/authy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Authy

Build status

Elixir library access to the Authy API, based loosely on the ruby gem.

Features

  • Phone Verification

Installation

  1. Add authy to your list of dependencies in mix.exs:
def deps do
  [{:authy, github: "365assistance/authy"}]
end
  1. Ensure authy is started before your application:
def application do
  [applications: [:authy]]
end
  1. Configure your api key and defaults for the various APIs
config :authy,
  api_key: System.get_env("AUTHY_API_KEY")
  phone_verification: [
    via: "sms",
    country_code: "61",
    locale: "en-AU",
    custom_message: "Verification code, yo!"]

About

Elixir library access to the Authy API

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Elixir 100.0%
0