The flutter app opens when using the encoded url
adb shell am start -a android.intent.action.VIEW
\
-c android.intent.category.BROWSABLE
\
-d "https://xxx.xxxx.xxx/forgot_password?userId%3Ddsad%26secret%3Ddsaddsadsadsa%26expire%3Ddsadadsa"
\
com.xx.xxxxxxx.xxxxx
But not witout it
adb shell am start -a android.intent.action.VIEW
\
-d "https://xxx.xxxxx.xxxx/forgot_password?userId=dsad&secret=dsaddsadsadsa&expire=dsadadsa" \
com.xxx.xxxx.xxx
Hello xxxxx xxxx,
Follow this link to reset your xxxxxxx password.
https://xxxx.xxxx.xxxx?userId=65f1d741cc7e6b05e95d&secret=xxxxx&expire=xxxxxx
If you didn’t ask to reset your password, you can ignore this message.
Thanks,
xxxxx team
This is the email template we get , the url is not encoded , so the app does not open , redirected to browser
Recommended threads
- Roles Enum Limitation in Kotlin SDK
The createMembership method in the Appwrite Kotlin SDK now requires List<io.appwrite.enums.Roles> instead of List<String>, but the predefined Roles enum only co...
- 1:1 relationship doesn’t sync after re-a...
Hi, I’m trying to use a two-way one-to-one relationship. It works fine when I create a record with the relationship set, and it also works when I unset it. But ...
- Upsert with setting permissions
Hi there, I am using self-hosted appwrite v1.7.4 and trying to use the bulk update stuff that was released with 1.7.x. Unfortunally I found that there is an ser...