Closed hastebrot closed 7 years ago
The transporter handles Request, Response, DolphinClientId, and SessionCookie.
Request
Response
DolphinClientId
SessionCookie
fun main(args: Array<String>) { val client = OkHttpClient() val request = Request.Builder() .url("http://localhost:8080/dolphin") .post(RequestBody.create( MediaType.parse("application/json"), "[]" )) .build() val response = client.newCall(request).execute() println(response.body()!!.string()) }
The transporter handles
Request
,Response
,DolphinClientId
, andSessionCookie
.