Skip to content
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

[FR] mobileLinksConfig is missing from projectConfigManager.updateProjectConfig #2880

Closed
xLesterGG opened this issue Mar 20, 2025 · 3 comments

Comments

@xLesterGG
Copy link

xLesterGG commented Mar 20, 2025

Is your feature request related to a problem? Please describe.
There is no mobileLinksConfig to update the domain when generating sign in emails.

I would like to move away from Firebase Dynamic links and use Firebase hosting for generating sign in emails.

I am referring to https://firebase.google.com/docs/auth/ios/email-link-migration?authuser=1&hl=en where there is an example showing

const updateRequest = {
  mobileLinksConfig: {
      domain: 'HOSTING_DOMAIN'
  }
}

const updateProjectConfig = () => {
projectConfigManager.updateProjectConfig(updateRequest)
.then((response) => {
    // updated project config
}).catch((error) => {
    console.log('Error updating the project:', error);
});
}

but there is no option to do that currently.

Describe the solution you'd like
I would like the to be able to update domain for generating my email sign in links as mentioned in the documentation so I can move away from Firebase Dynamic Links

Describe alternatives you've considered
I've tried using linkDomain in the ActionCodeSettings to try and use the new hosting domain but it doesnt work.

Additional context

auth.generateSignInWithEmailLink(
      'myemail.com',
      { linkDomain : 'myfirebasehostingurl.com', ...otherArgs}
)
@google-oss-bot
Copy link

I found a few problems with this issue:

  • I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight.
  • This issue does not seem to follow the issue template. Make sure you provide all the required information.

@andreymolchanov
Copy link

Try updating firebase-admin to the latest version and call adming.auth(). projectConfigManager()

@lahirumaramba
Copy link
Member

UpdateProjectConfigRequest.mobileLinksConfig should be available in v13.1.0 and up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants