-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[firebase_auth]: Firebase User Display Name for user with Apple Sign-In is STILL "null". #16981
Comments
Hi @adifyr, it seems to work as expected for actual accounts. I'm yet to test with a sandbox account. Can you confirm if it works with an actual account on your end? |
@SelaseKay Can confirm that it neither works with a Sandbox Account nor with an actual account. Here's the log for the returned user credential after authentication: flutter: Apple Credential - UID: 9ciyH9NzsrXfJo26nneb8x1EdW43 | Display Name: null | Email: null Here's the code I'm using to Sign-In With Apple. I've added the scopes for email & name and everything. Getting null in return every time. void signInWithApple() async {
setState(() => loadingApple = true);
try {
final appleProvider = AppleAuthProvider();
appleProvider.addScope('email');
appleProvider.addScope('name');
final cred = await FirebaseAuth.instance.signInWithProvider(AppleAuthProvider());
debugPrint(
'Apple Credential - UID: ${cred.user?.uid} | Display Name: ${cred.user?.displayName} | Email: ${cred.user?.email}',
);
final user = await ref.read(userProvider.future);
if (user == null && cred.user != null) {
Posthog().capture(eventName: 'app-register', properties: {
'provider': 'apple',
'platform': Platform.operatingSystem,
'user_id': cred.user!.uid,
});
}
if (mounted) Navigator.pushReplacementNamed(context, user == null ? '/register' : '/home', arguments: true);
} on FirebaseAuthException catch (fae) {
debugPrintStack(label: 'Error signing in with Apple: ${fae.code} - ${fae.message}', stackTrace: fae.stackTrace);
if (mounted) {
setState(() => loadingApple = false);
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text('Could Not Sign In: ${fae.code} - ${fae.message}'),
backgroundColor: Colors.red.shade800,
));
}
}
} Update:I tried removing the Sign-In Apple ID configuration from my iPhone Settings in |
I also have a question: Why aren't the scopes for Dealing with this just feels unnecessarily painful is all I'm saying. |
Hi @adifyr, I tested this with the current firebase_auth example app, and it appears to work as expected. Could you try running the example app to see if the issue still persists? You can also use it as a reference to check if anything might be missing in your implementation. |
Hi. The issue was with my code. The name is present in Here's the updated code that works: void signInWithApple() async {
setState(() => loadingApple = true);
try {
final appleProvider = AppleAuthProvider()
..addScope('email')
..addScope('name');
final user = (await FirebaseAuth.instance.signInWithProvider(appleProvider)).user;
final info = user?.providerData[0];
debugPrint('Apple Credential - UID: ${user?.uid} | Name: ${info?.displayName} | Email: ${info?.email}');
if (user?.displayName == null && info?.displayName != null) await user?.updateDisplayName(info?.displayName);
final appUser = await ref.read(userProvider.future);
if (appUser == null && user != null) {
await Posthog().capture(
eventName: 'app-register',
properties: {'provider': 'apple', 'platform': Platform.operatingSystem, 'user_id': user.uid},
);
}
if (mounted) Navigator.pushReplacementNamed(context, appUser == null ? '/register' : '/home');
} on FirebaseAuthException catch (fae) {
debugPrintStack(label: 'Error signing in with Apple: ${fae.code} - ${fae.message}', stackTrace: fae.stackTrace);
if (mounted) {
setState(() => loadingApple = false);
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text('Could Not Sign In: ${fae.code} - ${fae.message}'),
backgroundColor: Colors.red.shade800,
));
}
}
} That being said, I'd really do think that the Display Name scope should be included internally every time, since their |
Is there an existing issue for this?
Which plugins are affected?
Auth
Which platforms are affected?
iOS
Description
I am testing Firebase Sign-In With Apple on my app with a Sandbox Apple User. I need to populate the name field in my user registration with the given + family name provided by Apple. But the
displayName
is coming as "null". Here is the debug log when IdebugPrint()
theuser.displayName
.flutter: User Display Name With Apple Sign-In for user QJWvBkeiGHXhhQgN83xqL4ink9l2: "null"
Reproducing the issue
initState()
on the registration screen.Firebase Core version
3.8.1
Flutter Version
3.24.4
Relevant Log Output
Flutter dependencies
Expand
Flutter dependencies
snippetAdditional context and comments
This issue was brought to the team's twice before in #7274 and #9662. But AFAIK a fix was never done and the conversations were limited to collaborators.
The text was updated successfully, but these errors were encountered: