Url string with REST

Hi,

I noticed something odd with what we are sending to webpagetest.org via rest. When we send a url that has an ampersand in the string (like example.com/index.aspx?AWSFlag=N&Zip=60061&Name=Bob) the entire url string is not passed. It stops at the first &. Any suggestions why that might be or how we can avoid it with out PHP?

Thanks
[hr]
Hi,

Just answered my own question. I swapped out the & for %26 (ASCII) and the tests ran correctly.

Keith

Yep, you need to url-encode the query parameters before sending them, otherwise the request itself breaks on the & :slight_smile: