Merge pull request #62370 from timothyqiu/http-request-doc-3.x

[3.x] Make code example in HTTPRequest classref working
This commit is contained in:
Rémi Verschelde 2022-06-24 23:21:10 +02:00 committed by GitHub
commit f428bfd456
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
# Perform a POST request. The URL below returns JSON as of writing.
# Note: Don't make simultaneous requests using a single HTTPRequest node.
# The snippet below is provided for reference only.
var body = {"name": "Godette"}
var body = to_json({"name": "Godette"})
error = http_request.request("https://httpbin.org/post", [], true, HTTPClient.METHOD_POST, body)
if error != OK:
push_error("An error occurred in the HTTP request.")