Parse more than one URL encoded variable
Closed this issue · 2 comments
iluvatyr commented
When I try to pass more than just one variable to the webhook, it does not work, as only the first variable is received.
Could someone tell me how to make something like:
#!/bin/sh
echo "Hello ${name}, do you want to ${command}?"
Work?
curl localhost:8080/scriptname?name=Max&command=play
does not work unfortunately.
Thanks in advance
ncarlier commented
iluvatyr commented
Well, thanks for the info. Indeed, with quotations it works. I'm impressed with the fact that I did not think of such a basic thing. Wow.