我有用户注册的服务,注册过程的一部分需要电子邮件确认。用户可以通过三种方式注册该服务。在网络上、使用 iPhone 应用程序或使用 Android 设备。
当我向他们发送电子邮件以确认他们的注册时,我可以包含完成注册的链接,并且为了使用户更轻松地完成注册,我可以附上他们的用户名和验证码,然后将其自动放入表单中。
在 HTML 链接的情况下,它看起来像这样:
<a target="_blank" href="https://mysite.com/confirmation.html?verification=XXXXXXXXX&username=larry">Complete verification on the web</a>
我可以通过链接到 PHP 脚本来让应用程序在 iPhone 上打开:
<a target="_blank" href="https://mysite.com/iphoneopen.php?verification=XXXXXXXXX&username=larry">complete your verification with the iPhone app</a>
然后在 PHP 脚本中我有这个:
<meta http-equiv="refresh" content="0;URL=myappname://?verification=XXXXXXXXX&username=larry"/>
我在 Android 上使用什么代码,这样当用户在手机上收到电子邮件(可能是使用 GMail 应用程序)时,他们可以单击链接并直接进入应用程序?以及如何在该链接中包含变量?
我正在为我的 Android 应用程序使用 Adobe Phonegap Build,因此它是使用 Javascript 和 HTML 构建的。结果,我不知道什么是“意图过滤器”。请在回答时考虑到这一点。感谢你的理解。