From e2f77c7d56c25669195ae72f3a3aaee1228a8320 Mon Sep 17 00:00:00 2001 From: Jan Date: Thu, 19 Oct 2023 11:37:02 +0200 Subject: [PATCH] httpie: add German translation (#10966) * httpie: add German translation --------- Co-authored-by: Juri Dispan --- pages.de/common/httpie.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages.de/common/httpie.md diff --git a/pages.de/common/httpie.md b/pages.de/common/httpie.md new file mode 100644 index 000000000..0ba62cccc --- /dev/null +++ b/pages.de/common/httpie.md @@ -0,0 +1,36 @@ +# HTTPie + +> Ein benutzerfreundliches HTTP-Tool. +> Weitere Informationen: . + +- Sende eine GET-Anfrage (Standardmethode ohne Anfragedaten): + +`http {{https://example.com}}` + +- Sende eine POST-Anfrage (Standardmethode mit Anfragedaten): + +`http {{https://example.com}} {{hello=World}}` + +- Sende eine POST-Anfrage mit einer Datei als Eingabe: + +`http {{https://example.com}} < {{file.json}}` + +- Sende eine PUT-Anfrage mit einem bestimmten JSON-Body: + +`http PUT {{https://example.com/todos/7}} {{hello=world}}` + +- Sende eine DELETE-Anfrage mit einem bestimmten Anfrage-Header: + +`http DELETE {{https://example.com/todos/7}} {{API-Key:foo}}` + +- Zeige den gesamten HTTP-Austausch (sowohl Anfrage als auch Antwort): + +`http -v {{https://example.com}}` + +- Lade eine Datei herunter: + +`http --download {{https://example.com}}` + +- Folge Umleitungen und zeige Zwischenanfragen und -antworten: + +`http --follow --all {{https://example.com}}`