Jump to top

ActionCodeSettingsIos

interface

iOS specific options which can be attached to the ActionCodeSettings object to be sent with requests such as User#sendEmailVerification.

Example
await firebase.auth().currentUser.sendEmailVerification({
 iOS: {
   bundleId: '123456',
 },
});

Properties

bundleId

</>

Sets the iOS bundle ID. This will try to open the link in an iOS app if it is installed. The iOS app needs to be registered in the Console.

bundleId: undefined | string;