Hi there,
Here's an issue on retrieving returned api call data. I found that Request.Form("param2") not working.
Eg: inside .vbs script that run in a windows server, I do an api call to external script. Then the api script return a string data.
Eg: param1=baby;param2=banana;param3=haha
I found that inside .vbs, if I use request.form, request.getparam etc, all not working.
vbs only can get a string? If like that then I have to manually split the string into arrray, then read it by referring to array index.
Anyone know any easy way?