안드로이드 (1) 썸네일형 리스트형 Retrofit retrofit : A type-safe HTTP client for Android and Java api.xxx.com 2-2-2. manifests/AndroidManifest.xml 에 추가 3. Retrofit 생성 Retrofit retrofit = new Retrofit.Builder() .baseUrl("https://api.github.com") .addConverterFactory(GsonConverterFactory.create()) .build(); 4. Interface 생성 인터페이스를 생성하고 사용자 정의 코드 추가 @GET("/login") 이전 1 다음