Releases: m-canton/godot-http-manager
Releases · m-canton/godot-http-manager
v2.0
v1.4
v1.3
v1.2
In this version HTTPManagerRequest.start
returns to make requests in one line. You can add listeners (methods to call) with this method. Depending on the type of argument, it will set them in different ways:
Callable
. Called when request is completed (even if it is not successful).Array
. First callable is called when request is completed successfully. Second callable is called on failure.Dictionary
. Keys must beHTTPManagerRequest.Listener
and values 'Callable`s.
HTTPManagerRequest.with_*
methods are HTTPManagerRequest.set_*
now. To follow the Godot convention a bit on other objects.
v1.1
This version refactors some names to improve the usability of this plugin.
Changes:
base_url
inHTTPManagerClient
instead ofhost
andport
.HTTPManager.request
handles null request.HTTPManager.fetch
to auto-parse the response body with await.MIME
class to handle MIMETypes and parse data.- Redirect support.