Popularity
8.5
Stable
Activity
3.6
-
27
4
28

Monthly Downloads: 57
Programming language: Haskell
License: MIT License
Tags: Web    
Latest version: v0.6.0.0

oidc-client alternatives and similar packages

Based on the "Web" category.
Alternatively, view oidc-client alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of oidc-client or a related project?

Add another 'Web' Package

README

OpenID Connect 1.0 library for Relying Party

Circle CI

This package supports implementing of an OpenID Connect 1.0 Relying Party. It's written in Haskell.

This package uses jose-jwt package for decoding a received tokens.

Usage

$ cabal update
$ cabal install oidc-client

The documentation is available in Hackage.

Run example

examples/scotty is a runnable code. If you try to run it, execute commands as follows:

$ stack build --flag oidc-client:build-examples

and then

$ export OPENID_CLIENT_BASE_URL="http://localhost:3000"
$ export OPENID_CLIENT_ID="Your client ID"
$ export OPENID_CLIENT_SECRET="Your client secret"
$ stack exec scotty-example

You can access to http://localhost:3000/login.