So i'm trying to create a URL string in an EEM script and the URL has a question mark in it but it's not escaping no matter what i've tried. Any ideas?
A few i've tried are:
action 4.0 set api "http://192.168.0.128.cgi-bin/api.py^V?id=$serial"
action 4.0 set api "http://192.168.0.128.cgi-bin/api.py\026?id=$serial"
action 4.0 set api "http://192.168.0.128.cgi-bin/api.py\?id=$serial"
Also, i've tried using %3F as the question mark but my apache2 server cannot handing encoded urls.
Any help would be great!