Closed Offerel closed 3 years ago
If you want to place a URL into a query string of another URL, you'll need to URL-encode it, as otherwise the 2 URLs will clash and parsing it will become ambiguous.
You can enable URL-encoding by ticking the "URL encode" checkbox when editing the variable:
Got it. You are right. UrlEncode it seems to work as expected.
BTW: im using your app for example with my Bookmark tool: https://github.com/Offerel/SyncMarks-Webapp/blob/d96a4d03b3b411ed4ddc3e1e4df79ecf4af7de5d/index.php#L719
Steps To Reproduce
{url}
is a variable, filled with some url, followed by some additional variablesExpected behavior At the server, I try to parse the parameters with PHP. I expect the value "android" in
$_GET['var1']
Actual behavior
$_GET['var1']
seems to be empty. However$_GET['link']
has the correct value.Context (please complete the following information):
Maybe I have something configured the wrong way. For my understanding, i add the GET parameters only by inserting them in the URL for the GET Shortcut.