4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

KotlinでFuelとMoshiを使ってjsonをPOSTする

Last updated at Posted at 2017-11-25

参考

  • moshiを利用して、リクエストをJSON文字列に変換
  • FuelでPOSTする
  val moshi = Moshi.Builder().add(KotlinJsonAdapterFactory()).build()
  val requestAdapter = moshi.adapter(SampleRequest::class.java)
  
  val header: HashMap<String, String> = hashMapOf("Content-Type" to "application/json")

  val sampleRequest = SampleRequest(
    name = "XXXXX",
    age = 11
  )
  val (_, _, result) = Fuel.post("http://example.com/sample/api").header(header).body(requestAdapter.toJson(sampleRequest)).responseString()

  val (data, _) = result

  println(data)

Gradleの設定 

dependencies {
...
  compile "com.squareup.moshi:moshi:1.5.0"
  compile "com.squareup.moshi:moshi-kotlin:1.5.0"
  compile 'com.github.kittinunf.fuel:fuel:1.11.0'
  compile 'com.github.kittinunf.fuel:fuel-gson:1.11.0'
...
}
4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?