Describe your environment
- Operating System version: macOS Sequoia 15.3
- Firebase SDK version: 3.1.0
- Firebase Product: Auth
- .NET version: 9.0
Describe the problem
The .NET sdk is missing the ability to specify a link domain for sending passwordless login emails, and doesn't mark DynamicLinkDomain as obsolete.
Node.js: ActionCodeSettings.LinkDomain
Relevant Code:
ActionCodeSettings action = new()
{
Url = $"mygenerictest/callback",
HandleCodeInApp = true,
// LinkDomain = "notfirebase.catfile.me"
};
await FirebaseAuth.DefaultInstance.GenerateSignInWithEmailLinkAsync(
"notarealemail@catfile.me", action);