android - Parsing data in deep link -
in application, using deep linking. here flow of application, on registration user gets email web
http://test.abc.com/testing?email=ywtzlmtuaxqxmta4qgdtywlslmnvbq==
but on web side there deep uri along details
abc://testing/email/ywtzlmtuaxqxmta4qgdtywlslmnvbq==/id/20
if scheme data returning test.abc.com
is possible details of deep uri, in ios there default method returning full url.
is there way in android well?
yes can full deep link url.
you can in target activity intent
data :
uri data = this.getintent().getdata(); if (data != null && data.ishierarchical()) { string uri = this.getintent().getdatastring(); log.i("yourapp", "deep link clicked : " + uri); }
Comments
Post a Comment