I'm following http-conduit Synopsis,
Suppose the request url is: http://example.com/?q1=v1
Using req <- liftIO $ parseURL $ "http://example.com?q1=v1", the request works.
However, I'd like to add several parameters to the url coming from a list: I asked on the Freenode#yesod if it is possible to add parameters whenever parseUrl is already used. The answer I got: set queryString for GET and use urlEncodedBody for POST.
Reading the source code, I infered that queryString had the parameter and values encoded in an url. However, I tried to:
build the first request, with
`req <- liftIO $ parseUrl "http://example.com(without parameters)build a newer request, with:
let req2 = req { queryString = "?q1=v1" }(and without the ?)
but the request doesn't resolve to the expected response (the parameter q1 is obligatory)
Questions:
- Is this what
queryStringis intended for? - Haskell-wisely: How can I debug what's the value of a queryString in a Request? adding a Debug.Trace.trace as a statement in the do block resulted in a error (Missing instance for
MonadBaseControl)