http: add Dutch translation (#13495)

This commit is contained in:
Sebastiaan Speck
2024-08-22 13:59:48 +02:00
committed by GitHub
parent 7c766825aa
commit e359595fcc

32
pages.nl/common/http.md Normal file
View File

@@ -0,0 +1,32 @@
# http
> HTTPie: HTTP client, bedoeld om gebruiksvriendelijker te zijn dan cURL.
> Meer informatie: <https://httpie.org>.
- Download een URL naar een bestand:
`http --download {{example.org}}`
- Verstuur formulier-gecodeerde data:
`http --form {{example.org}} {{naam='bob'}} {{profielfoto@'bob.png'}}`
- Verstuur een JSON-object:
`http {{example.org}} {{naam='bob'}}`
- Specificeer een HTTP-methode:
`http {{HEAD}} {{example.org}}`
- Voeg een extra header toe:
`http {{example.org}} {{X-MyHeader:123}}`
- Geef een gebruikersnaam en wachtwoord op voor serverauthenticatie:
`http --auth {{gebruikersnaam:wachtwoord}} {{example.org}}`
- Specificeer de onbewerkte request body via `stdin`:
`cat {{data.txt}} | http PUT {{example.org}}`