We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e8ed7a commit 9500485Copy full SHA for 9500485
1 file changed
examples/http.roc
@@ -48,7 +48,7 @@ main! = |_args|
48
{
49
method: GET,
50
headers: [],
51
- uri: "https://github.com",
+ uri: "https://www.example.com",
52
body: [],
53
timeout_ms: TimeoutMilliseconds(5000),
54
},
@@ -63,7 +63,7 @@ main! = |_args|
63
64
response_2 =
65
Http.default_request
66
- |> &uri "https://github.com"
+ |> &uri "https://www.example.com"
67
|> &headers [Http.header(("Accept", "text/html"))]
68
|> Http.send!()?
69
0 commit comments