llfbandit / app_links

Android App Links, Deep Links, iOs Universal Links and Custom URL schemes handler for Flutter.
https://pub.dev/packages/app_links
Apache License 2.0
176 stars 68 forks source link

URLs with multiple query params got only first param #13

Closed md-abdul-halim-rafi closed 2 years ago

md-abdul-halim-rafi commented 2 years ago

URLs like this format https://example.com/test?id=123&name=hello&anotherParam=world is only showing https://example.com/test?id=123

Can't access all query parameters. Getting only the first one.

llfbandit commented 2 years ago

Thanks for the report, I guess this is only an issue with adb? In my own apps, it works fine.

golane-august commented 2 years ago

See: https://stackoverflow.com/questions/35645414/android-deep-linking-with-multiple-query-parameters, need a backslash \ before & sign.