We are experiencing random user disconnection

Hi @miguel.hernandez ,

Welcome to the Auth0 Community!

I checked your tenant and noticed in the rule “Basic Scope Verification”,

const requestedScopes = context.request.body.scope || context.request.query.scope || '';

Do you want to try updating it as below and check the log again?

var requestedScopes = context.request.body.scope || (context.request.query && context.request.query.scope) || null;

2 Likes