Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kkpoon/elm-auth0

Auth0 for elmlang
https://github.com/kkpoon/elm-auth0

auth0 elm elm-lang

Last synced: about 1 month ago
JSON representation

Auth0 for elmlang

Awesome Lists containing this project

README

        

# elm-auth0

Auth0 for elmlang

This elm package provides data types and helper function for elm web application
to use [Auth0](https://auth0.com/).

## Example

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

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