Hello my friends. I’m perfom a login with flutter and auth0: this is the code:
Future<void> login(Map<String, dynamic> authData) async {
try {
final credentials = await auth0.api.login(
usernameOrEmail: authData["email"],
password: authData["password"],
connectionOrRealm: "Username-Password-Authentication"
);
await auth0.credentialsManager.storeCredentials(credentials);
isLoggedIn = await auth0.credentialsManager.hasValidCredentials();
notifyListeners();
} on ApiException catch(e) {
print(e);
isLoggedIn = false;
notifyListeners();
}
}
I have enabled the grant type in this case (Password) and the console show me this:
What is exactly? Maybe i have forgotten some config?
tyf
3
Hey there @arenasduranj welcome to the community!
Interesting! I did some digging on my end and did come across the validateClaims()
method which is indeed required:
Shameless plug for our new Flutter SDK (first availability)
tyf
Closed
4
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.