Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. Is this what queryString is intended for?
  2. 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)
share|improve this question
Without seeing more of your code, I can't really give specific advice. But it appears that you're doing everything correctly from the information you've provided. – Michael Snoyman Apr 15 '12 at 3:22
"adding a Debug.Trace.trace as a statement in the do block resulted in a error (Missing instance for MonadBaseControl)" -- you'd really need to provide the complete error message, and a sample of the code at the location it points to, to interpret this. – Ben Millwood Sep 20 '12 at 18:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.