From e6e0fae145a954e242a0165dd8e3c5bb020a7368 Mon Sep 17 00:00:00 2001 From: Dakota Hipp Date: Sat, 18 May 2019 15:10:46 -0700 Subject: [PATCH] backend tutorial Auth0 OIDC settings Update backend graphql tutorial authentication page to mention how to disable OIDC conformant settings in Auth0 --- .../tutorial-site/content/authentication/5-test-with-headers.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/community/learn/hasura/graphql-tutorial-backend/tutorial-site/content/authentication/5-test-with-headers.md b/community/learn/hasura/graphql-tutorial-backend/tutorial-site/content/authentication/5-test-with-headers.md index 992ba6c6ca65c..9fe19a7bc46dd 100644 --- a/community/learn/hasura/graphql-tutorial-backend/tutorial-site/content/authentication/5-test-with-headers.md +++ b/community/learn/hasura/graphql-tutorial-backend/tutorial-site/content/authentication/5-test-with-headers.md @@ -16,6 +16,8 @@ To get a JWT token, - Replace client_id with Auth0 application's client_id. - Replace callback_uri with `http://localhost:3000/callback` for testing. +**Note**: In case logging in gives an error mentioning OIDC-conformant clients, try disabling OIDC Conformant setting (https://auth0.com/docs/api-auth/tutorials/adoption/oidc-conformant) under Advanced Settings -> OAuth. + 2. After successfully logging in, you will be redirected to https://localhost:3000/callback#xxxxxxxx&id_token=yyyyyyy. This page may be a 404 if you don’t have a UI running on localhost:3000. 3. Extract the id_token value from this URL. This is the JWT.