Good Day - Im using ORCID to authenticate to TLJH server and have been tasked to limit access to specific ORCID and struggling to implement allow access config. The example provided in Allowing access to your JupyterHub — OAuthenticator is for Github and im struggling to find the right syntax to limit access to specific ORCID’s. Does anyone have any experience or some pointers to assist me thanks.
Try checking your logs (perhaps with debug logging turned on if necessary), you should see the usernames that are being used. You should be able to add those to allowed_users
.
1 Like
The issue was getting the correct syntax example in documentation was to use curly braces allowed_users = {"mensah", "art"}
and simply changing to square brackets allowed_users = ["mensah", "art"]
sorted it out thanks for replying.
2 Likes