https://github.com/guillotinaweb/guillotina_authentication
Provide authentication to various services
https://github.com/guillotinaweb/guillotina_authentication
Last synced: about 2 months ago
JSON representation
Provide authentication to various services
- Host: GitHub
- URL: https://github.com/guillotinaweb/guillotina_authentication
- Owner: guillotinaweb
- Created: 2018-10-06T05:14:51.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-07T20:22:54.000Z (over 6 years ago)
- Last Synced: 2025-02-16T03:26:18.719Z (8 months ago)
- Language: Python
- Size: 80.1 KB
- Stars: 0
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
Awesome Lists containing this project
README
guillotina_authentication Docs
==============================This guillotina app provides authentication through different providers:
- [x] twitter
- [x] google
- [x] github
- [x] ORY hydra based?
- [ ] facebook (untested)Example configuration::
auth_providers:
twitter:
configuration:
consumer_key: foobar
consumer_secret: foobar
google:
configuration:
client_id: foobar
client_secret: foobar
scope: openid email
github:
configuration:
client_id: foobar
client_secret: foobar
scope: read:user
hydra:
configuration:
client_id: auth-code-client
client_secret: secret
base_url: http://localhost:4444/
authorize_url: http://localhost:4444/oauth2/auth
access_token_url: http://localhost:4444/oauth2/token
state: true
scope: openid offline# frontend url to handle storing auth
auth_callback_url: http://localhost:8080/foobar
auth_user_identifiers
- guillotina_authentication.identifier.OAuthClientIdentifierEndpoints
---------- GET /@authentication-providers
- GET /@authorize/{provider}
- GET /@authenticate/{provider}
- GET /@callback/{provider}TODO
----- be able to specify custom scopes to authenicate with