Logto
Get email from claims
By default, the example logto config from guide does not set scope, so getLogtoContext(logtoConfig)
does not return email etc.
import { UserScope } from "@logto/next";
export const logtoConfig = {
endpoint: '...',
appId: '...',
appSecret: '...',
baseUrl: '...',
cookieSecret: '...',
// https://docs.logto.io/quick-starts/java-spring-boot#scopes-and-claims
scopes: [UserScope.Email],
};
Created a issue in logto repo https://github.com/logto-io/logto/issues/7197