aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-http.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/mastodon-http.el')
-rw-r--r--lisp/mastodon-http.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el
index 7be4467..b590bf0 100644
--- a/lisp/mastodon-http.el
+++ b/lisp/mastodon-http.el
@@ -98,6 +98,17 @@ Pass response buffer to CALLBACK function."
(mastodon-auth--access-token))))))
(url-retrieve-synchronously url)))
+(defun mastodon-http--delete (url)
+ "Make GET request to URL.
+
+Pass response buffer to CALLBACK function."
+ (let ((url-request-method "DELETE")
+ (url-request-extra-headers
+ `(("Authorization" . ,(concat "Bearer "
+ (mastodon-auth--access-token))))))
+ (with-temp-buffer
+ (url-retrieve-synchronously url))))
+
(defun mastodon-http--get-json (url)
"Make GET request to URL. Return JSON response vector."
(let ((json-vector