Skip to content

Instantly share code, notes, and snippets.

@Audhil
Created July 27, 2019 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Audhil/f03b634a5ce7213a2bf786290f1c9f9e to your computer and use it in GitHub Desktop.
Save Audhil/f03b634a5ce7213a2bf786290f1c9f9e to your computer and use it in GitHub Desktop.
APIKindaStuff
.service
.greetUser("Audhil")
.enqueue(object : Callback<ResponseBody> {
override fun onFailure(call: Call<ResponseBody>, t: Throwable) {
println("---TTTT :: GET Throwable EXCEPTION:: " + t.message)
}
override fun onResponse(call: Call<ResponseBody>, response: Response<ResponseBody>) {
if (response.isSuccessful) {
val msg = response.body()?.string()
println("---TTTT :: GET msg from server :: " + msg)
Toast.makeText(applicationContext, msg, Toast.LENGTH_SHORT).show()
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment