Home > Blockchain >  Flutter Apple Sign in not get email,password, and name,surname
Flutter Apple Sign in not get email,password, and name,surname

Time:12-05

the code below allows you to login with apple-id but I can't see the credentials, why?

Flutter Code:

  final credentialUser = await SignInWithApple
                                  .getAppleIDCredential(
                                  scopes: AppleIDAuthorizationScopes.values);
                              print(credentialUser);

CodePudding user response:

Allow the permissions in iphone

CodePudding user response:

try this


 final credential = await SignInWithApple.getAppleIDCredential(
  scopes: [
    AppleIDAuthorizationScopes.email,
    AppleIDAuthorizationScopes.fullName,
  ],
);
  • Related