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

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -