From 24a261a523091c00c8d45c86ebf2a48eb21c41b3 Mon Sep 17 00:00:00 2001 From: WebWorkingMan Date: Fri, 30 Aug 2024 13:31:28 +0200 Subject: [PATCH] I'de to add the Content-Type of the headers in order to get it working. See: https://github.com/paperless-ngx/paperless-ngx/discussions/7580 --- Post-Consume-Script-Examples.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Post-Consume-Script-Examples.md b/Post-Consume-Script-Examples.md index f0987f5..e5f86a9 100644 --- a/Post-Consume-Script-Examples.md +++ b/Post-Consume-Script-Examples.md @@ -28,7 +28,10 @@ def _set_auth_tokens(paperless_url: str, timeout: float, session: requests.Sessi response = session.post( paperless_url + "/api/token/", data=json.dumps(credentials), - headers={"X-CSRFToken": csrf_token}, + headers={ + "X-CSRFToken": csrf_token, + "Content-Type": "application/json" + }, timeout=timeout, ) response.raise_for_status() @@ -75,6 +78,7 @@ if __name__ == "__main__": # Update the document resp = sess.patch( paperless_url + f"/api/documents/{doc_pk}/", + headers={"Content-Type": "application/json"}, data=json.dumps({"correspondent": new_correspondent, "document_type": new_doc_type}), timeout=timeout, )