r0man
r0man
@kanaka Custom EDN readers are not supported yet I think. We need something similiar to: https://github.com/dakrone/clj-http/blob/3.x/src/clj_http/client.clj#L64 PR welcome!
@kanaka Yes, that is still an issue. I think we need something what I described here: https://github.com/r0man/cljs-http/issues/110#issuecomment-372112437
Update: I think this has also something to do with different versions of phantomjs. My tests run fine on Travis old infrastructure. Locally with phantomjs v2.0.0 and on Travis container...
Hi Bensu, I got my tests working locally with phantomjs v2.0.0 with the follwoing snippet: ``` clojure (set! (.-error js/console) (fn [x] (.log js/console x))) ``` However, they still fail...
@dark4eg Are other headers sent along? You may have to configure your server to allow some headers. https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS#Access-Control-Allow-Headers
@viebel I'm on holiday at the moment and AFK most of the time. What do you mean by " I need to convert it to edn"? An EDN string? I...
@viebel This is not possible at the moment I think. Patch that mimics the behaviour of clj-http welcome!
@danskarda I agree that we should return the response under the :body key in this case as well. Updated patch with tests welcome! Also, is this only working in Webkit?...
@bbatsov I'm going to do this for the log middleware. Does this also apply to the response keys? Looking around the middlewares I see that many of them return the...
Ok, I will prefix the responses as well then.