uni_links
uni_links copied to clipboard
uni not get full url data
Hi Thank you for your package it works for my project but for more than two data query parameters it does not work for example for this query that you suggest to help
adb shell 'am start -W -a android.intent.action.VIEW -c android.intent.category.BROWSABLE -d "unilinks://example.com/path/portion/?uid=123&token=abc"'
it only returns uid=123 but ignores token=abc I don't know what is the problem
@hamid3d Hi, have you solved it?
Check the solution provided on issue #100 , it seems that it's unable to correctly parse the '&' @hamid3d @fauzi2107
&
should be replaced with \&
Example:
adb shell 'am start -W -a android.intent.action.VIEW -c android.intent.category.BROWSABLE -d "unilinks://example.com/path/portion/?uid=123\&token=abc"'