티스토리 뷰
import okhttp3.OkHttpClient
import okhttp3.logging.HttpLoggingInterceptor
import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory
object RetrofitBuilder {
private fun getRetrofit():Retrofit {
val httpLoggingInterceptor = HttpLoggingInterceptor()
httpLoggingInterceptor.level = HttpLoggingInterceptor.Level.BODY
val client = OkHttpClient.Builder().
addInterceptor(httpLoggingInterceptor).build()
val retrofit = Retrofit.Builder().
baseUrl("https://api.com/").
addConverterFactory(GsonConverterFactory.create()).
client(client).build()
return retrofit;
}
fun getApiService() :RetrofitApi {
return getRetrofit().create(RetrofitApi::class.java)
}
}
interface RetrofitApi {
// &user_id={id}&user_name={name}
@GET("../path")
fun get(
@Query("user_id") id: String,
@Query("user_name") name: String,
) :Call<vo 객체>
}
주석처럼 &key=value는 @Query를 사용하면 알아서 url에 붙여줌
getApiService().get("아이디","이름").enqueue(object : Callback<vo객체> {
override fun onResponse(call: Call<vo객체>, response: Response<vo객체>) {
if(response.isSuccessful){
val result: vo객체? = response.body()
}
}
override fun onFailure(call: Call<Model_CheckCoupon>, t: Throwable) {
}
})
HttpLoggingInterceptor
이건 로그를 위한... okhttp로 태그걸면 통신 관련 로그 다 나옴,
body 사용법
@POST("...path")
fun setBody(@Body v : testBody) : Call<vo객체>
data class testBody (
@SerializedName("id") val id: String,
@SerializedName("pw") val pw: String
)
SerializedName 넣어야 함.. 이러면 자동으로 json 파싱해줌
'android' 카테고리의 다른 글
retrofit으로, rx and coroutine (0) | 2023.02.03 |
---|---|
android mvvm 예제 (0) | 2023.01.30 |
by viewmodels() 쓰는법, (0) | 2022.08.18 |
android Frame Animation, Animation Drawable 사용 방법 (0) | 2020.04.27 |
AnimationDrawable memory 문제. (0) | 2020.04.27 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- nosql
- 구글 맵 경로 그리기
- 클래스형 코드
- not starting .bash_profile
- React Native
- rn
- not working adb
- not found adb
- 안드로이드
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- mac android
- mongo db
- ubunut 설치 link
- MongoDB
- 차번호 정규표현식
- 함수형 코드
- react native state
- ubunut android
- text 부분 색 칠하기
- 자바
- 명령어
- 귀찮아;;
- adb 환경변수
- 데이터베이스
- 차번호 정규식
- Android
- spannableText
- https://hwan-shell.tistory.com/244
- insert
- 구글 맵 선그리기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함