Commit 65c7e8e0 authored by Marcel Stör's avatar Marcel Stör
Browse files

Use http://httpbin.org in examples

parent f0c10343
...@@ -36,7 +36,7 @@ Executes a HTTP DELETE request. ...@@ -36,7 +36,7 @@ Executes a HTTP DELETE request.
#### Example #### Example
```lua ```lua
http.delete('https://connor.example.com/john', http.delete('http://httpbin.org/delete',
"", "",
"", "",
function(code, data) function(code, data)
...@@ -65,7 +65,7 @@ Executes a HTTP GET request. ...@@ -65,7 +65,7 @@ Executes a HTTP GET request.
#### Example #### Example
```lua ```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 if (code < 0) then
print("HTTP request failed") print("HTTP request failed")
else else
...@@ -92,7 +92,7 @@ Executes a HTTP POST request. ...@@ -92,7 +92,7 @@ Executes a HTTP POST request.
#### Example #### Example
```lua ```lua
http.post('http://json.example.com/something', http.post('http://httpbin.org/post',
'Content-Type: application/json\r\n', 'Content-Type: application/json\r\n',
'{"hello":"world"}', '{"hello":"world"}',
function(code, data) function(code, data)
...@@ -122,7 +122,7 @@ Executes a HTTP PUT request. ...@@ -122,7 +122,7 @@ Executes a HTTP PUT request.
#### Example #### Example
```lua ```lua
http.put('http://db.example.com/items.php?key=deckard', http.put('http://httpbin.org/put',
'Content-Type: text/plain\r\n', 'Content-Type: text/plain\r\n',
'Hello!\nStay a while, and listen...\n', 'Hello!\nStay a while, and listen...\n',
function(code, data) function(code, data)
...@@ -153,7 +153,7 @@ Execute a custom HTTP request for any HTTP method. ...@@ -153,7 +153,7 @@ Execute a custom HTTP request for any HTTP method.
#### Example #### Example
```lua ```lua
http.request("https://www.example.com", "HEAD", "", "", function(code, data) http.request("http://httpbin.org", "HEAD", "", "",
function(code, data) function(code, data)
if (code < 0) then if (code < 0) then
print("HTTP request failed") print("HTTP request failed")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment