Skip to content

Instantly share code, notes, and snippets.

@legumbre
Created October 29, 2011 04:06
Show Gist options
  • Save legumbre/1324054 to your computer and use it in GitHub Desktop.
Save legumbre/1324054 to your computer and use it in GitHub Desktop.
(require 'url)
(let ((url-request-method "POST")
(url-request-extra-headers '(("Content-Type" . "application/x-www-form-urlencoded")))
(url-request-data "field1=Hello&field2=from&field3=Emacs"))
(with-current-buffer (url-retrieve-synchronously "http://example.net/foo/bar") (buffer-string))) ;; C-x C-e here to POST
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment