From 65c7e8e061e2d7fe8803c78a3597e3a7517a8dd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20St=C3=B6r?= Date: Fri, 13 May 2016 23:30:46 +0200 Subject: [PATCH] Use http://httpbin.org in examples --- docs/en/modules/http.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/modules/http.md b/docs/en/modules/http.md index c1b915c1..494eb4e5 100644 --- a/docs/en/modules/http.md +++ b/docs/en/modules/http.md @@ -36,7 +36,7 @@ Executes a HTTP DELETE request. #### Example ```lua -http.delete('https://connor.example.com/john', +http.delete('http://httpbin.org/delete', "", "", function(code, data) @@ -65,7 +65,7 @@ Executes a HTTP GET request. #### Example ```lua -http.get("https://www.vowstar.com/nodemcu/", nil, function(code, data) +http.get("http://httpbin.org/ip", nil, function(code, data) if (code < 0) then print("HTTP request failed") else @@ -92,7 +92,7 @@ Executes a HTTP POST request. #### Example ```lua -http.post('http://json.example.com/something', +http.post('http://httpbin.org/post', 'Content-Type: application/json\r\n', '{"hello":"world"}', function(code, data) @@ -122,7 +122,7 @@ Executes a HTTP PUT request. #### Example ```lua -http.put('http://db.example.com/items.php?key=deckard', +http.put('http://httpbin.org/put', 'Content-Type: text/plain\r\n', 'Hello!\nStay a while, and listen...\n', function(code, data) @@ -153,7 +153,7 @@ Execute a custom HTTP request for any HTTP method. #### Example ```lua -http.request("https://www.example.com", "HEAD", "", "", function(code, data) +http.request("http://httpbin.org", "HEAD", "", "", function(code, data) if (code < 0) then print("HTTP request failed")