# oauthenticator **Repository Path**: mirrors_Stratio/oauthenticator ## Basic Information - **Project Name**: oauthenticator - **Description**: GitHub OAuth + JupyterHub Authenticator = OAuthenticator - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-08-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # OAuthenticator OAuth + JupyterHub Authenticator = OAuthenticator ## Examples For an example docker image using OAuthenticator, see the [example](example) directory. There is [another example](https://github.com/jupyterhub/dockerspawner/tree/master/examples/oauth) for using GitHub OAuth to spawn each user's server in a separate docker container. ## Installation Install with pip: pip3 install oauthenticator Or clone the repo and do a dev install: git clone https://github.com/jupyterhub/oauthenticator.git cd oauthenticator pip3 install -e . ## GitHub Setup First, you'll need to create a [GitHub OAuth application](https://github.com/settings/applications/new). Make sure the callback URL is: http[s]://[your-host]/hub/oauth_callback Where `[your-host]` is where your server will be running. Such as `example.com:8000`. Then, add the following to your `jupyterhub_config.py` file: c.JupyterHub.authenticator_class = 'oauthenticator.GitHubOAuthenticator' (you can also use `LocalGitHubOAuthenticator` to handle both local and GitHub auth). You will additionally need to specify the OAuth callback URL, the client ID, and the client secret (you should have gotten these when you created your OAuth app on GitHub). For example, if these values are in the environment variables `$OAUTH_CALLBACK_URL`, `$GITHUB_CLIENT_ID` and `$GITHUB_CLIENT_SECRET`, you should add the following to your `jupyterhub_config.py`: ``` c.GitHubOAuthenticator.oauth_callback_url = os.environ['OAUTH_CALLBACK_URL'] c.GitHubOAuthenticator.client_id = os.environ['GITHUB_CLIENT_ID'] c.GitHubOAuthenticator.client_secret = os.environ['GITHUB_CLIENT_SECRET'] ``` ## Google Setup Visit https://console.developers.google.com to set up an OAuth client ID and secret. See [Google's documentation](https://developers.google.com/identity/protocols/OAuth2) on how to create OAUth 2.0 client credentials. The `Authorized JavaScript origins` should be set to to your hub's public address while `Authorized redirect URIs` should be set to the same but followed by `/hub/oauth_callback`. Set the generated client ID and secret in your `jupyterhub_config`: ``` c.GoogleOAuthenticator.client_id = os.environ['OAUTH_CLIENT_ID'] c.GoogleOAuthenticator.client_secret = os.environ['OAUTH_CLIENT_SECRET'] c.GoogleOAuthenticator.oauth_callback_url = os.environ['OAUTH_CALLBACK_URL'] ``` For a Google Apps domain you can set: ``` c.GoogleOAuthenticator.hosted_domain = 'mycollege.edu' c.GoogleOAuthenticator.login_service = 'My College' ```