Hello!

I have this rewrite:
{
"from": "/u/:key",
"to": "_list/pouch/user-items",
"method": "GET",
"query": {"key": ":key"}
}

..which gives me: {"error":"bad_request","reason":"invalid UTF-8 JSON"}

Nothing wrong with the JSON, however, the rewrite handler rewrites to this
url: example.com/db/_design/app/_list/pouch/user-items?key=somekey

somekey needs to be in double quotes as it is a string. How can I get the
rewrite handler to produce ?key="somekey" ?

// antics

Reply via email to