Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions packages/authentication/docs/setup-email-link.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,24 @@
```

`[DOMAIN_NAME]` must be replaced with your domain name of the link.

2. If the above doesnt work try the following:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There must be a reason why it doesn't work. Please debug it. The setup instructions must be clear so that you know when to use which variant.

```xml
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data
android:host="[PAGE_ROUTE]"
android:scheme="[APP_NAME]" />
</intent-filter>
```

`[PAGE_ROUTE]` must be replaced with your page route the link will go to e.g. for route */home* use *home*

`[APP_NAME]` must be replaced with your application name.

## iOS

Expand Down