Using REST Services
The io.kvision.rest.RestClient
component, located in the kvision-rest
module, can be used to connect to any RESTfull services (it will work with any JSON over HTTP services). You can use remote services with both dynamic and type-safe calls (using @Serializable
classes). The RestClient
class has only a single receive()
method, which uses the builder pattern for configuration and returns a kotlin.js.Promise<RestResponse<T>>
object. A number of extension functions is defined for RestClient
, which allow you to make typical calls easier.
Dynamic parameters, dynamic result
Dynamic parameters, type-safe result
Type-safe parameters, dynamic result
Type-safe parameters, type-safe result
A wrapper RestResponse
class is defined as:
When using receive()
,request()
or requestDynamic()
functions, the returned RestResponse
object gives you access to the returned data as well as the native Response
object, which gives you access to the server response (e.g. to get HTTP header values and other information):
Custom serializers
RestClient
allows you to specify a custom serializers module with a builder parameter and allows you to use type-safe calls with all types of data.
Last updated