how to reproduce:
1. make a url request, e.g. one to Yahoo's query language.
2. add two variables.
<os:HttpRequest key="yql" href="
http://query.yahooapis.com/v1/public/
yql?q=select%20*%20from%20search.images%20where%20query%3D%27%5B%22$
{d.content.terms[0]}%22%2C%22${d.content.terms[1]}%22%5D
%27&format=json"/>
2. there's no step 2
Expected behavior:
- a request to YQL with the desired url.
This would happen if i just remove the seccond variable from the url,
as in:
<os:HttpRequest key="yql" href="
http://query.yahooapis.com/v1/public/
yql?q=select%20*%20from%20search.images%20where%20query%3D%27%5B%22$
{d.content.terms[0]}%22%5D%27&format=json"/>
Actual behavior:
- the whole widget returns 404.
if i print both vars, they return "red" and "green" sans quotes.
Thank you.
Gabriel