[go: nahoru, domu]

Skip to content

kkpoon/elm-auth0

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

elm-auth0

Auth0 for elmlang

This elm package provides data types and helper function for elm web application to use Auth0.

Example

To create an URL for your web app "Login with Google", the following URL builder could help.

auth0AuthorizeURL
    (Auth0Config "https://my-app.auth0.com" "aBcD1234")
    "token"
    "https://my-app/"
    [ "openid", "name", "email" ]
    (Just "google-oauth2")