Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kkpoon/elm-auth0
- Owner: kkpoon
- License: bsd-3-clause
- Created: 2017-06-16T14:19:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-05-23T09:38:53.000Z (over 1 year ago)
- Last Synced: 2024-09-29T08:04:59.809Z (about 2 months ago)
- Topics: auth0, elm, elm-lang
- Language: Elm
- Homepage: http://package.elm-lang.org/packages/kkpoon/elm-auth0/latest
- Size: 8.79 KB
- Stars: 12
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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")
```