api.accessToken.addScope
Error: The number of scopes exceeds the allowed maximum of 100.
I am using the Auth0 platform on a Spring boot Application with over a 100 permissions per user, it was really convenient for me to simple add the permissions as SCOPES since the Spring Security Layer let’s me use it automatically as hasAuthorities. I assumed that was the was to go and added a lot of permissions, but my application is expected to have over 200 permissions maybe even more , I wanted the convenience of simply adding the permissions as scopes and use them in spring, now I see that is not possible because you can only add 100 scopes.
is it possible to increase that ammount.