Consent screen does not display scope description?

Hi.
I am also experiencing the same situation as shown in the URL below, where the description I entered from the settings screen is not displayed as the description of the scope shown on the consent screen with universal login.

Consent dialog does not display scope description

scope setting:

consent screen: Expect to see “test description” here

Is there any setting I need to do in order for the description I entered from the settings screen to be displayed on the consent screen?
I am currently trying with a tenant in the free-trial period.

Hi @ryan5500

Welcome back to the Auth0 Community!

In order to user a description of the scope you will need to enable to use_scope_descriptions_for_consent flag

curl --request PATCH \
  --url 'https://{yourDomain}/api/v2/tenants/settings' \
  --header 'authorization: Bearer API2_ACCESS_TOKEN' \
  --header 'cache-control: no-cache' \
  --header 'content-type: application/json' \
  --data '{ "flags": { "use_scope_descriptions_for_consent": true } }' 

If you would like to display the Description field instead, you can do so by setting the tenant’s use_scope_descriptions_for_consent to true. This will affect consent prompts for all of the APIs on that tenant.

Thanks
Dawid

1 Like