Closed juergenhoetzel closed 5 years ago
I don't entirely undertand your question, but if you are asking for access to the response data, then perhaps you want something like this?
(let* ((thisrequest elisp
(request
"http://example.host/add"
:params '(("a" . 1) ("b" . 2))
:parser 'json-read) ))
(data (request-response-data thisrequest))
(messate "%s" data))
I hope to update the documentation when I have time!
fixed as of 8a6c15763b300b46c5179bd02e26af28e83288d3
First: Thanks for this nice library :+1:
There are many useful examples on this page. But all examples do handle the response in a imperative/side-effect way (
message
output).I would like to do something like this:
Eval result is:
Is this possible?