본문 바로가기
Mobile#Mobile#Android#HTTP조회 1

Retrofit란?

정의

Square의 Android HTTP 클라이언트. 타입 안전 API 호출.

다른 표현레트로핏

Retrofit이란?

REST API 호출을 인터페이스 선언만으로 구현하게 하는 Android HTTP 라이브러리다.

interface Api {
  @GET("users/{id}")
  suspend fun getUser(@Path("id") id: String): User
}

생태계

OkHttp + Moshi(JSON) + Kotlinx Serialization 조합이 표준.

🔗 함께 보면 좋은 용어

Mobile 전체 →