# HiRetrofit **Repository Path**: dropm/hi-retrofit ## Basic Information - **Project Name**: HiRetrofit - **Description**: 封账Retrofit网络请求 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-15 - **Last Updated**: 2021-12-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # HiRetrofit #### 介绍 封账Retrofit网络请求 #### 使用说明 ``` RetrofitClient.getServiceApi() .userLogin("","") .enqueue(new Callback() { @Override public void onFailure(Call call, IOException e) { // 请求出错 } @Override public void onResponse(Call call, Response response){ // 请求成功 Log.e("TAG",response.toString()); } }); ```