Simple mobile app in flutter so using the basic web authentication no Lock sdks. Have a rule below to return simple Test Claim. Right now have scope set to openid profile. Not getting my test Claim back any ideas?
function (user, context, callback) {
if (context.clientID === ‘XXXXXXXXXXXXXXXXXXXXXXX’) {
context.idToken[‘https://XXXXXXXXXXXXX.auth0.com/test’] = “Dude”;
}
callback(null, user, context);
}