일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Android ProgressBar
- Android DataBinding
- 영어공부
- 영어독립365
- 66챌린지
- Android Navigation
- Android 12
- 안드로이드 카카오 로그인
- 카카오 알고리즘
- 습관만들기
- 알고리즘 자바
- Android WebView
- Kotlin
- android recyclerview
- scope function
- Java
- 프로그래머스 알고리즘
- Android 12 대응
- 안드로이드 갤러리 접근
- Android ViewPager2
- Android
- Android Jetpack
- MVP Architecture
- OkHttp Interceptor
- 안드로이드 fcm
- WebView
- Kotlin FCM
- Android Interceptor
- DataBinding
- 안드로이드
- Today
- Total
목록안드로이드/Network (6)
Developer Geek
인터셉터란 Retrofit Singletone Pattern Singleton Pattern build.gradle(:app): Retrofit 사용을 위한 Dependency 추가, GsonConverter 추가 dependencies { .. // https://mvnrepository.com/artifact/com.squareup.retrofit2/retrofit implementation("com.squareup.retrofit2:retrofit:2.9.0") // gson converter implementation 'com.squareup.retrofit2:converter-gson:2.9.0' .. } Request Interceptor For Adding Headers RetrofitCli..
개요 Interceptors란 API 통신에서 요청에 대해 monitor, rewrite 그리고 retry 할 수 있는 강력한 메커니즘이다. Interceptor를 통해서 우리는 API 통신을 만들 때, 통신 과정을 모니터링 하거나 특별한 작업을 수행할 수 있다. 쉽게 말해서, Interceptor 기능은 공항 보안 요원이 보안 검사하는 과정과 비슷하다. 그들은 먼저 탑승권을 확인하고, 승인한 다음에서야 우리가 지나갈 수 있도록 하는 것처럼 말이다. Interceptor는 중앙에서 API 호출들을 모니터링 하는 것처럼 다양하게 사용된다. 일반적으로 우리는 각각의 network 호출에 대해 logger를 달아야 할 필요가 있다. 하지만 Interceptor를 이용한다면 하나의 logger를 추가하여 모든 ..
Retrofit Singleton Retrofit2 in Kotlin 개요 모바일에서 HTTP API 통신을 할 때 사용하는 라이브러리이다. REST 기반의 웹서비스를 통해 JSON 구조를 쉽게 가져오고 업로드할 수 있다. HTTP API를 Interface로 구현할 수 있다. interface GitHubService.. devgeek.tistory.com Singleton Class in Kotlin 개요 앱에서 딱 한번만 생성되고 전역에서 사용할 객체가 필요하다면 우린 Singleton Pattern을 사용하면 된다. Singleton Pattern 은 해당 클래스에서 오직 하나의 객체만을 사용하도록 제한하는 것이다. devgeek.tistory.com 왜 Retrofit을 Singletone으로?..
개요 모바일에서 HTTP API 통신을 할 때 사용하는 라이브러리이다. REST 기반의 웹서비스를 통해 JSON 구조를 쉽게 가져오고 업로드할 수 있다. HTTP API를 Interface로 구현할 수 있다. interface GitHubService { @GET("users/{user}/repos") fun listRepos( @Path("user") user: String ) } Retrofit class는 위에서 정의한 GitHubService Interface의 구현체를 생성한다. val retrofit = Retrofit.Builder() .baseUrl("https://api.github.com/") .build() val service = retrofit.create(GitHubService..
Retrofit2 개요 모바일에서 HTTP API 통신을 할 때 사용하는 라이브러리이다. REST 기반의 웹서비스를 통해 JSON 구조를 쉽게 가져오고 업로드할 수 있다. HTTP API를 Interface로 구현할 수 있다. public interface GitHubService { @GET("users/{user}/repos") Call listRepos(@Path("user") String user); } Retrofit class는 위에서 정의한 GitHubService Interface의 구현체를 생성한다. Retrofit retrofit = new Retrofit.Builder() .baseUrl("https://api.github.com/") .build(); GitHubService ser..