+1 vote

Hi,
following the tutorial on the docs, I make a request to an online API to retrieve a JSON file back, so I connect the request_completed signal with the following code:

func _on_HTTPRequest_request_completed(result, response_code, headers, body):
    if result != 0:
        printerr("HTTPRequest Error: ", result, " ", response_code)
        return

var json = JSON.parse(body.get_string_from_utf8())
print(json.result)

And the HTTPRequest node always returns a "RESULTDOWNLOADFILECANTOPEN" error (the request is accepted).
I can't debug this kind of error, can anyone help me?

in Engine by (570 points)

Please log in or register to answer this question.

Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.