Expo Access Token Authority
I'm currently using the Expo SDK and it works great. My only issue is that I can't find a way to provide an authority (or list of authorities) to ensure we retrieve an access token for a registered API. The Expo config only has these values (KindeAuthProvider.tsx):
The React Native SDK does have a way to provide a list of authorities when creating the SDK object. Am I going to have to switch to that SDK or am I missing something in the Expo SDK?
type KindeAuthConfig = {
domain: string | undefined;
clientId: string | undefined;
scopes?: string;
enhancedSecurity?: boolean;
};
The React Native SDK does have a way to provide a list of authorities when creating the SDK object. Am I going to have to switch to that SDK or am I missing something in the Expo SDK?