I'm trying to test config for deep links, in expo documentation I found next line
Development in Expo Go: exp://127.0.0.1:19000/--/path/into/app?hello=world
, but as soon as I try to run npx uri-scheme open exp://127.0.0.1:19000/--/path/into/app?hello=world --ios
I have an error no matches found: exp://127.0.0.1:19000/--/path/into/app?hello=world
, as soon as I remove query string it works.
Is there any idea what I'm doing wrong?
Didn't find any answers in the official documentation.
Deep Linking expo
1.6k views Asked by ventro_art At
1
I found escaping
?
character solves this issue.This works on iOS simulator only. No luck with Expo Go app.