kittinunf
10/07/2015, 5:26 AM<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)
}
}