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.