null, which makes my library throw a validation error. For the production environment the returned value is an array like I would expect. I've tried to see if there is any configuration differences, but I haven't been able to find anything. Do you have any idea of what's up?





id_token_hint/oauth2/revoke.well-known/openid-configurationscopes_supported1.0.2 Removed unsupported platforms (web and desktop)flutter pub add kinde_flutter_sdk
Because every version of kinde_flutter_sdk depends on flutter_secure_storage ^8.0.0 and [MY APP] depends on flutter_secure_storage 9.2.4, kinde_flutter_sdk is forbidden.
So, because [MY APP] depends on kinde_flutter_sdk any, version solving failed.public class KindeTestHelper
{
public static async Task<string> GetAccessTokenAsync(string domain, string clientId, string clientSecret,
string audience, string scopes, string realm, string username, string password)
{
var client = new KindeClient(new ApplicationConfiguration(domain, "", ""), new KindeHttpClient());
await client.Authorize(new ClientCredentialsConfiguration(clientId, scopes, clientSecret, audience));
// How to authenticate a test user and get an access token
var accessToken = await client.GetToken();
return accessToken;
}
}public class Auth0TestHelper
{
// Login and get auth token
public static async Task<string> GetAccessTokenAsync(string domain, string clientId, string clientSecret,
string audience, string scopes, string realm, string username, string password)
{
var authenticationApiClient = new AuthenticationApiClient(new Uri($"https://{domain}"));
var result = await authenticationApiClient.GetTokenAsync(new ResourceOwnerTokenRequest {
ClientId = clientId,
ClientSecret = clientSecret,
Audience = audience,
Scope = scopes,
Realm = realm,
Username = username,
Password = password
});
var accessToken = result.AccessToken;
return accessToken;
}
}id,first_name,last_name,email,salt,salt_position,hashed_password,hashing_method,email_verifiedprefixbrcyptbcryptisAuthenticated()kindeClient.logout()logout_urilogout_uricreateKindeClient@kinde-oss/kinde-auth-pkce-jsconst { logout } = useKindeAuth();