Amazon sns notification -> open to the right page

I’ve made an amazon sns notification. It works fine with framework7. But how can I direct to a specific page in my framework7 when the user open the app via notification? Thank you for your answer.

This is my message body for the amazon sns notification:

{
“default”: “I am default”,
“APNS”:"{“aps”:{“alert”:{“title”: “Framework7”, “body”: “Framework7 is great!”}, “sound”:“chime.aiff”, “badge”: 1}}",
“GCM”: “{ “data”: {“title”: “Framework7”, “message”: “Framework7 is great!.” , “badge”:1 }}”

}

can you send in the payload the route? if yes, then in the app just navigate to the route in your payload.

1 Like

Thanks for your answer. I will look at that.