简体   繁体   中英

When I click verify in email, how to make it go straight to android app installed?

When I click verify in email, how to make it go straight to android app installed

For Example:

Registration -> send Verification Email to user -> user clicks verification link -> it will verify and echo "Click here to login" - > then it will go straight to the android app

When you click on verify link in the email it should take you to a link on your server. Based on the client request is coming from server should redirect it to appropriate link. If it is coming from mobile android browser server can redirect it to a page which is handled by your app with following intent-filter (and on desktop and other browsers you can just use different redirect page)

<intent-filter>
  <action android:name="android.intent.action.VIEW" />
  <category android:name="android.intent.category.DEFAULT" />
  <category android:name="android.intent.category.BROWSABLE" />
  <data 
    android:scheme="http" 
    android:host="myapp.com" 
    android:path="/somepath/" />
</intent-filter>

See documentation for more details: http://developer.android.com/guide/topics/manifest/data-element.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM