From cc65b4caddabc4b8f6ad781be3bfb1715c7ad81e Mon Sep 17 00:00:00 2001 From: John Joyce Date: Fri, 16 Jul 2021 09:18:50 -0700 Subject: [PATCH] fix(docs): fixing miscellaneous docs (#2899) --- docs/how/auth/sso/configure-oidc-react-google.md | 1 + docs/modeling/metadata-model.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/how/auth/sso/configure-oidc-react-google.md b/docs/how/auth/sso/configure-oidc-react-google.md index 644bab32dd..a5c8d28809 100644 --- a/docs/how/auth/sso/configure-oidc-react-google.md +++ b/docs/how/auth/sso/configure-oidc-react-google.md @@ -79,6 +79,7 @@ AUTH_OIDC_CLIENT_ID=your-client-id AUTH_OIDC_CLIENT_SECRET=your-client-secret AUTH_OIDC_DISCOVERY_URI=https://accounts.google.com/.well-known/openid-configuration AUTH_OIDC_BASE_URL=your-datahub-url +AUTH_OIDC_SCOPE="openid email" AUTH_OIDC_USER_NAME_CLAIM=email AUTH_OIDC_USER_NAME_CLAIM_REGEX=([^@]+) ``` diff --git a/docs/modeling/metadata-model.md b/docs/modeling/metadata-model.md index 2b3c70a062..db3e0b336d 100644 --- a/docs/modeling/metadata-model.md +++ b/docs/modeling/metadata-model.md @@ -40,7 +40,7 @@ urn of the entity to retrieve. For example, to fetch a Chart entity, we can use the following CURL: ``` -curl --location --request GET 'http://localhost:8080/entities?action=get&urn=urn:li:chart:customers +curl --location --request GET 'http://localhost:8080/entities/urn%3Ali%3Achart%3Acustomers ``` As you'll notice, we perform the lookup using the url-encoded *Urn* associated with an entity.