``` <http://Fuel.post|Fuel.post>("<http://jsonplac...
# kotlin-fuel
k
Copy code
<http://Fuel.post|Fuel.post>("<http://jsonplaceholder.typicode.com/posts>", listOf("email" to "xxx",
                "password" to "yyy",
                "firstName" to "hello",
                "lastName" to "world",
                "date" to "10/05/1988")).responseString { request, response, either ->
            val (err, data) = either
            if (err != null) {
                Log.e(TAG, err.toString())
            } else {
                Log.d(TAG, data)
            }
        }