ob-http
ob-http copied to clipboard
make http request within org-mode babel
There was no option "http" that could be added to org-babel-load-languages if used M-x customize-variable. worked fine with the elisp at the end of init: (org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp . t)...
If there are any non-ASCII characters in the request URI, `curl` will send those through in raw UTF-8 form by default. That is almost never what you'd want, since all...
Hey thanks for this mode: it is very useful at work!! The org-src-lang-modes list contains cons-cell with symbols, not strings: `(("amm" . scala) ("arduino" . arduino) ("translate" . text) ("redis"...
When doing https request through a http proxy in curl, the response will be like this: (executing `curl -i https://httpbin.org/ip`) ``` HTTP/1.1 200 Connection Established HTTP/1.1 200 OK Access-Control-Allow-Credentials: true...
jq -j would strip the newline it adds. when I tried to construct a url like ``` #+NAME: get_user_id #+BEGIN_SRC http :pretty :var auth_token=login :select .results | .[0] | .id...
I am trying to submit a multipart upload with the following body, however the webserver seems to receive no GET POST or FILES content is that actually supported or am...
Add support for `xmllint`: I suppose `xmllint` is installed on most systems.
I wish to submit request to https website with `:host` option, but it's default to `http`, so I figured how to change it. Looking at the source code, found that...
Correct all occurrances of "schema" to "scheme" in accordance with [RFC 3986](https://tools.ietf.org/html/rfc3986)'s definition of the term.
It wold be nice to be able to specify the content type of the resulting example block so that ob highlighting works inside of it... So that this is inserted...