uni_links icon indicating copy to clipboard operation
uni_links copied to clipboard

uni not get full url data

Open hamid3d opened this issue 2 years ago • 3 comments

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 avatar Aug 17 '22 06:08 hamid3d

@hamid3d Hi, have you solved it?

fauzi2107 avatar Sep 21 '22 04:09 fauzi2107

Check the solution provided on issue #100 , it seems that it's unable to correctly parse the '&' @hamid3d @fauzi2107

alexhdez98 avatar Oct 26 '22 09:10 alexhdez98

& 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"'

mrtsmglv avatar Mar 20 '23 10:03 mrtsmglv