Skip to content

Commit 0d34767

Browse files
hassaanpjasnell
authored andcommitted
doc: sending http request to localhost to avoid https redirect
In the JSON fetching example, http.get request is being sent to an http url that redirects to https. This causes the http.get request to fail. To avoid redirect errors, a local http server is set up that returns a json response. Fixes: #37907 PR-URL: #38036 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Nitzan Uziely <linkgoron@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent f851efd commit 0d34767

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

doc/api/http.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -2720,7 +2720,7 @@ The `callback` is invoked with a single argument that is an instance of
27202720
JSON fetching example:
27212721

27222722
```js
2723-
http.get('http://nodejs.org/dist/index.json', (res) => {
2723+
http.get('http://localhost:8000/', (res) => {
27242724
const { statusCode } = res;
27252725
const contentType = res.headers['content-type'];
27262726

@@ -2755,6 +2755,16 @@ http.get('http://nodejs.org/dist/index.json', (res) => {
27552755
}).on('error', (e) => {
27562756
console.error(`Got error: ${e.message}`);
27572757
});
2758+
2759+
// Create a local server to receive data from
2760+
const server = http.createServer((req, res) => {
2761+
res.writeHead(200, { 'Content-Type': 'application/json' });
2762+
res.end(JSON.stringify({
2763+
data: 'Hello World!'
2764+
}));
2765+
});
2766+
2767+
server.listen(8000);
27582768
```
27592769

27602770
## `http.globalAgent`

0 commit comments

Comments
 (0)