I need to add the in-app events which need to redirect to the Purchase screen.
How can I achieve this?
Note: I can able to open the app using the universal link. But can't able to open the Purchase screen using the link.
I need to add the in-app events which need to redirect to the Purchase screen.
How can I achieve this?
Note: I can able to open the app using the universal link. But can't able to open the Purchase screen using the link.
Copyright © 2021 Jogjafile Inc.
If the payload comes from a push notification then you can use DEEP LINKING. If you want to tap on an address like
www.myWevSite.com/purchase/123456
and open the app if installed, then you can use UNIVERSAL Linking.To use Universal Linking you first need to:
then configure your website:
Facebook for instance has the same file at https://facebook.com/apple-app-site-association
Once everything is setup correctly, if you click on the link, the associated domain is checked and, if the app is installed, you can navigate the user to any view controller in the app.
For instance your email button can have the following link: https://www.website.com/login?data=yourDate
so in the app you can do the following:
If you want to use DEEP LINK, you need to add the payload in your push notification and then do something like this: