Very basic question about curl:
I can successfully pass a string parameter to the application exposing REST API on localhost with:
curl -d "stringParam = a b c d" 'localhost:8080/jobs?appName=testApp'
How would I compose regular URL that can be entered in a browser? I've tried:
localhost:8080/jobs?appName=testApp&stringParam="a b c d"
, but it doesn't work.