Hi @Anonymous ,
Thanks for your patience. Routes are secured by adding one or more role names into a rule's allowedRoles
array.
based on what you shared, you have "allowedRoles": ["authenticated"]
but you don't have an authorization provider-specific login route. for example, You can add a route rule like this
{
"route": "/login",
"serve": "/.auth/login/github"
}
to map a authentication-authorization default provider to a friendly route like /login. See the example route file for details.
Please let us know if you have further questions
Thanks,
Grace