asgi-auth-github icon indicating copy to clipboard operation
asgi-auth-github copied to clipboard

ASGI middleware that authenticates users against GitHub

Results 3 asgi-auth-github issues
Sort by recently updated
recently updated
newest added

When adding the following in my requirements.txt: `git+https://github.com/Jaapp-/asgi-auth-github@master#egg=asgi-auth-github` and install from a new virtualenv, I get an error like this: `error: invalid command 'bdist_wheel'` https://stackoverflow.com/questions/34819221/why-is-python-setup-py-saying-invalid-command-bdist-wheel-on-travis-ci As per the answers, adding...

In Starlette, I'm using something like this: ```python auth_app = GitHubAuth(...) app.mount('/admin', app=auth_app) ``` In this case, `scope["path"] == "/"` and `scope["root_path"] == "/admin"`. As a result the redirect cookie...