diff options
author | mousebot <mousebot@riseup.net> | 2021-05-06 19:21:29 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-05-06 19:21:29 +0200 |
commit | c5a3c917712283d733971dba2ad39486f82bb6e4 (patch) | |
tree | 9b199933ac4451bb263d663c8cd7e60f4c5750ee /lisp/mastodon-http.el | |
parent | 5095797ef32b922d2a624fa6beb970b5e9cf5ca0 (diff) |
add delete toot function
Diffstat (limited to 'lisp/mastodon-http.el')
-rw-r--r-- | lisp/mastodon-http.el | 11 |
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 |