-2

Currently I'm working on user registration form which uses email confirmation.

I've managed to start my app using link in the email, but I have no clue on getting the link which user clicked to start my app.

The link is somewhat like this :

www.lalala.com/CfmEmail?Token=12345&code=ASDfghJKLzxc&Email=kevin@gmail.com

I want to break it down to get its individual value like

Token = 12345, Email = kevin@gmail.com and Code = ASDfghJKLzxc

Please do notify me for any further essential information..

Kevin Murvie
  • 2,592
  • 1
  • 25
  • 43

1 Answers1

1

It's known as deep linking. For implementation check developer.android.com

Pr38y
  • 1,565
  • 13
  • 21