1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

httpie: add German translation (#10966)

* httpie: add German translation

---------

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
This commit is contained in:
Jan 2023-10-19 11:37:02 +02:00 committed by K.B.Dharun Krishna
parent 648578c17a
commit e2f77c7d56
No known key found for this signature in database
GPG key ID: 1B8ECA406788AFA4

36
pages.de/common/httpie.md Normal file
View file

@ -0,0 +1,36 @@
# HTTPie
> Ein benutzerfreundliches HTTP-Tool.
> Weitere Informationen: <https://github.com/httpie/httpie>.
- 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}}`