oidc
OIDC client for crystal extends the regular OAuth2::Client
.
Installation
-
Add the dependency to your
shard.yml
:dependencies: oidc: github: threez/oidc
-
Run
shards install
Usage
require "oidc"
client = OIDC::Client.new("http://example.com/", "client-id", "ALSJDHJKASHGDJHGASKDJG")
# use the client to get authorize uri
state = UUID.random
client.get_authorize_uri("profile email roles openid", state.to_s)
# get access token for code
authorization_code = params["code"]
access_token = client.get_access_token_using_authorization_code(authorization_code)
Contributing
- Fork it (https://github.com/threez/oidc.cr/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Vincent Landgraf - creator and maintainer