Hey,
Before the start of Auth0’s deprecation plan, we were able to get the app_metadata and user_metadata from an Auth0 User inside the payload. For example:
{
"iss": "https://test.eu.auth0.com/",
"app_metadata": {
"roles": [
"some-role"
]
},
"user_metadata": {
"first_name": "John",
"last_name": "Doe"
}
Now, for new tenants, this is not happening anymore. We really need a way to enable this for an old customer while we deal with all the changes needed on our server to stop expecting those fields. How can we enable that?