Reputation: 478
Is it possible to send an SMS or a push notification with a link to a specific action in an ios application. For instance, I'm trying to implement password reset in iPhone application. Due to some restrictions I can't use emails. I know how to send push notifications. The question is, is it possible to embed a link with a token which would open a particular view in particular application and pass that token through?
Upvotes: 0
Views: 1617
Reputation: 37581
You can add a link in an SMS which would launch your app (or another app for that matter if it supports URL launching) if the user clicked on that link within the SMS and the link could contain the token which gets passed through to the app.
You can't put a link into a push notification but there's no need to because when the user clicks on the notification your app would automatically get launched (and passed any data such as the token you have embedded within the push notification). (You cannot launch another arbitrary app from a push notification).
Upvotes: 2