retrofit2.converter.gson.GsonConverterFactory Java Examples
The following examples show how to use
retrofit2.converter.gson.GsonConverterFactory.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ClientModule.java From Aurora with Apache License 2.0 | 6 votes |
/** * 提供 {@link Retrofit} * * @param builder * @param client * @param httpUrl * @return * @author: jess * @date 8/30/16 1:15 PM */ @Singleton @Provides Retrofit provideRetrofit(Application application, @Nullable RetrofitConfiguration configuration, Retrofit.Builder builder, OkHttpClient client , HttpUrl httpUrl, Gson gson) { builder .baseUrl(httpUrl)//域名 .client(client);//设置okhttp if (configuration != null) configuration.configRetrofit(application, builder); builder .addCallAdapterFactory(RxJava2CallAdapterFactory.create())//使用 Rxjava .addConverterFactory(GsonConverterFactory.create(gson));//使用 Gson return builder.build(); }
Example #2
Source File: DownloadManager.java From RetrofitClient with MIT License | 6 votes |
public void addDownloadInfo(DownloadInfo info) { info.setState(DownloadInfo.DOWNLOAD); if (info == null || subscriberMap.get(info.getUrl()) != null) { subscriberMap.get(info.getUrl()).setDownloadInfo(info); return; } DownloadSubscriber subscriber = new DownloadSubscriber(info); subscriberMap.put(info.getUrl(), subscriber); CommonRequest commonRequest; if (!downloadInfos.contains(info)) { DownloadInterceptor interceptor = DownloadInterceptor.create(info, subscriber); OkHttpClient.Builder builder = new OkHttpClient.Builder(); builder.connectTimeout(60, TimeUnit.SECONDS); builder.addInterceptor(interceptor); Retrofit.Builder retrofitBuilder = new Retrofit.Builder() .client(builder.build()) .baseUrl(HttpManager.getBaseUrl()) .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()); commonRequest = retrofitBuilder.build().create(CommonRequest.class); info.setRequest(commonRequest); downloadInfos.add(info); } }
Example #3
Source File: ApiService.java From tenor-android-core with Apache License 2.0 | 6 votes |
@Override public synchronized T create(@NonNull Builder<T> builder) { Context ctx = builder.context; if (!(ctx instanceof Application)) { ctx = ctx.getApplicationContext(); } final File cacheDir = new File(ctx.getCacheDir().getAbsolutePath(), ctx.getPackageName()); final Cache cache = new Cache(cacheDir, 10 * 1024 * 1024); OkHttpClient.Builder http = new OkHttpClient.Builder() .cache(cache) .writeTimeout(builder.timeout, TimeUnit.SECONDS); for (Interceptor interceptor : builder.interceptors) { http.addInterceptor(interceptor); } Retrofit retrofit = new Retrofit.Builder() .baseUrl(builder.endpoint) .client(http.build()) .addConverterFactory(GsonConverterFactory.create(builder.gson)) .build(); return retrofit.create(builder.cls); }
Example #4
Source File: NightscoutFollow.java From xDrip with GNU General Public License v3.0 | 6 votes |
public static Retrofit getRetrofitInstance() throws IllegalArgumentException { if (retrofit == null) { final String url = getUrl(); if (emptyString(url)) { UserError.Log.d(TAG, "Empty url - cannot create instance"); return null; } final HttpLoggingInterceptor httpLoggingInterceptor = new HttpLoggingInterceptor(); if (D) { httpLoggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY); } final OkHttpClient client = enableTls12OnPreLollipop(new OkHttpClient.Builder()) .addInterceptor(httpLoggingInterceptor) .addInterceptor(new InfoInterceptor(TAG)) .addInterceptor(new GzipRequestInterceptor()) .build(); retrofit = new retrofit2.Retrofit.Builder() .baseUrl(url) .client(client) .addConverterFactory(GsonConverterFactory.create()) .build(); } return retrofit; }
Example #5
Source File: ApiClient.java From Learning-Resources with MIT License | 6 votes |
private void initAPIClient() { OkHttpClient.Builder okBuilder = MyOkHttpBuilder.getOkHttpBuilder(context); // okBuilder.retryOnConnectionFailure(true); // okBuilder.followRedirects(false); OkHttpClient httpClient = okBuilder.connectTimeout(HTTP_TIMEOUT, timeUnit) .writeTimeout(HTTP_TIMEOUT, timeUnit) .readTimeout(HTTP_TIMEOUT, timeUnit) .build(); Retrofit.Builder builder = new Retrofit.Builder(); retrofit = builder .addConverterFactory(GsonConverterFactory.create()) .baseUrl(API_BASE_URL) .client(httpClient) .build(); mApiService = retrofit.create(ApiService.class); }
Example #6
Source File: NetTestDataManager.java From QuickDevFramework with Apache License 2.0 | 6 votes |
public NetTestDataManager() { // 这些配置可以放在App工程的网络模块中,这里简要处理就不写了 HttpInfoCatchInterceptor infoCatchInterceptor = new HttpInfoCatchInterceptor(); infoCatchInterceptor.setCatchEnabled(true); infoCatchInterceptor.setHttpInfoCatchListener(new HttpInfoCatchListener() { @Override public void onInfoCaught(HttpInfoEntity entity) { entity.logOut(); //do something...... } }); OkHttpClient.Builder okBuilder = new OkHttpClient.Builder(); // okBuilder.cookieJar(RetrofitManager.()); okBuilder.addInterceptor(infoCatchInterceptor); RetrofitManager.configTrustAll(okBuilder); Retrofit.Builder builder = new Retrofit.Builder(); builder.baseUrl("http://www.weather.com.cn/") .client(okBuilder.build()) .addCallAdapterFactory(RxJava2CallAdapterFactory.create()) .addConverterFactory(GsonConverterFactory.create()); clientApi = builder.build().create(ClientApi.class); }
Example #7
Source File: ApiClient.java From GracefulMovies with Apache License 2.0 | 6 votes |
public ApiClient() { mRetrofitBuilder = new Retrofit.Builder() .baseUrl("https://api-m.mtime.cn/") .addCallAdapterFactory(RxJava2CallAdapterFactory.create()) .addConverterFactory(GsonConverterFactory.create()); mOkHttpClientBuilder = new OkHttpClient.Builder(); mOkHttpClientBuilder.connectTimeout(15, TimeUnit.SECONDS); if (BuildConfig.DEBUG) { mOkHttpClientBuilder.addNetworkInterceptor( new LoggingInterceptor.Builder() .loggable(BuildConfig.DEBUG) .setLevel(Level.BODY) .log(Platform.INFO) .request("Request") .response("Response") .build() ); } }
Example #8
Source File: RetrofitHelper.java From CleanArch with MIT License | 6 votes |
public static SampleService getSampleService() { if (service == null) { synchronized (RetrofitHelper.class) { if (service == null) { Retrofit retrofit = new Retrofit.Builder() .baseUrl("http://gank.io/") .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .addConverterFactory(GsonConverterFactory.create()) .build(); service = retrofit.create(SampleService.class); } } } return service; }
Example #9
Source File: SlackConfig.java From oneops with Apache License 2.0 | 6 votes |
/** * Initialize slack web api client. * * @return {@link SlackWebClient} */ @Bean public SlackWebClient getWebClient() { OkHttpClient client = new OkHttpClient.Builder() .readTimeout(slackTimeout, SECONDS) .connectTimeout(slackTimeout, SECONDS) .retryOnConnectionFailure(true) .build(); Retrofit retrofit = new Retrofit.Builder() .baseUrl(slackUrl) .client(client) .addConverterFactory(GsonConverterFactory.create(SlackWebClient.gson)) .build(); return retrofit.create(SlackWebClient.class); }
Example #10
Source File: ForecastClient.java From forecast-android with Apache License 2.0 | 6 votes |
private ForecastClient(ForecastConfiguration forecastConfiguration) { Retrofit retrofit = new Retrofit.Builder().baseUrl(Constants.API_BASE_URL) .addConverterFactory(GsonConverterFactory.create(createGson())) .client(createOkHttpClient(forecastConfiguration)) .build(); mApiKey = forecastConfiguration.getApiKey(); mLanguage = forecastConfiguration.getDefaultLanguage(); mUnit = forecastConfiguration.getDefaultUnit(); if (forecastConfiguration.getDefaultExcludeList() != null) { mExcludeBlocks = new ArrayList<>(forecastConfiguration.getDefaultExcludeList()); } CacheControl cacheControl = new CacheControl.Builder().maxAge(forecastConfiguration.getCacheMaxAge(), TimeUnit.SECONDS) .build(); mCacheControl = cacheControl.toString(); mService = retrofit.create(ForecastService.class); }
Example #11
Source File: FetchReviewsTask.java From popular-movies-app with Apache License 2.0 | 6 votes |
@Override protected List<Review> doInBackground(Long... params) { // If there's no movie id, there's nothing to look up. if (params.length == 0) { return null; } long movieId = params[0]; Retrofit retrofit = new Retrofit.Builder() .baseUrl("http://api.themoviedb.org/") .addConverterFactory(GsonConverterFactory.create()) .build(); MovieDatabaseService service = retrofit.create(MovieDatabaseService.class); Call<Reviews> call = service.findReviewsById(movieId, BuildConfig.THE_MOVIE_DATABASE_API_KEY); try { Response<Reviews> response = call.execute(); Reviews reviews = response.body(); return reviews.getReviews(); } catch (IOException e) { Log.e(LOG_TAG, "A problem occurred talking to the movie db ", e); } return null; }
Example #12
Source File: DroidKaigiClient.java From droidkaigi2016 with Apache License 2.0 | 6 votes |
@Inject public DroidKaigiClient(OkHttpClient client) { Retrofit feedburnerRetrofit = new Retrofit.Builder() .client(client) .baseUrl("https://raw.githubusercontent.com") .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .addConverterFactory(GsonConverterFactory.create(createGson())) .build(); service = feedburnerRetrofit.create(DroidKaigiService.class); Retrofit googleFormRetrofit = new Retrofit.Builder() .client(client) .baseUrl("https://docs.google.com/forms/d/") .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .addConverterFactory(GsonConverterFactory.create(createGson())) .build(); googleFormService = googleFormRetrofit.create(GoogleFormService.class); Retrofit githubRetrofit = new Retrofit.Builder() .client(client) .baseUrl("https://api.github.com") .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .addConverterFactory(GsonConverterFactory.create(createGson())) .build(); githubService = githubRetrofit.create(GithubService.class); }
Example #13
Source File: MainActivity.java From RxEasyHttp with Apache License 2.0 | 6 votes |
public void onCustomApiCall(View view) { final String name = "18688994275"; final String pass = "123456"; final CustomRequest request = EasyHttp.custom() .addConverterFactory(GsonConverterFactory.create(new Gson())) .sign(true) .timeStamp(true) .params(ComParamContact.Login.ACCOUNT, name) .params(ComParamContact.Login.PASSWORD, MD5.encrypt4login(pass, AppConstant.APP_SECRET)) .build(); LoginService mLoginService = request.create(LoginService.class); Observable<AuthModel> observable = request.apiCall(mLoginService.login("v1/account/login", request.getParams().urlParamsMap)); Disposable disposable = observable.subscribe(new Consumer<AuthModel>() { @Override public void accept(@NonNull AuthModel authModel) throws Exception { showToast(authModel.toString()); } }, new Consumer<Throwable>() { @Override public void accept(@NonNull Throwable throwable) throws Exception { showToast(throwable.getMessage()); } }); //EasyHttp.cancelSubscription(disposable);//取消订阅 }
Example #14
Source File: MovieDbAdapterProvider.java From Android-App-Architecture-MVVM-Databinding with Apache License 2.0 | 6 votes |
/** * Create a new instance for {@link IMovieDbApi IMovieDbApi} interface. * The requests will run in OkHttp's internal thread pool. */ @NonNull /* default */ static IMovieDbApi create(@NonNull final OkHttpClient httpClient) { // Set GSON naming policy final Gson gson = new GsonBuilder() .setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES) .create(); final Retrofit retrofit = new Retrofit.Builder() .baseUrl(API_ENDPOINT) .addCallAdapterFactory(RxJava2CallAdapterFactory.createAsync()) // Use OkHttp's internal thread pool. .addConverterFactory(GsonConverterFactory.create(gson)) .client(httpClient) .build(); return retrofit.create(IMovieDbApi.class); }
Example #15
Source File: ServiceFactory.java From ReadMark with Apache License 2.0 | 5 votes |
public static <T> T createService(String baseUrl, Class<T> serviceClazz) { Retrofit retrofit = new Retrofit.Builder() .client(getOkHttpClient()) .baseUrl(baseUrl) .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .build(); return retrofit.create(serviceClazz); }
Example #16
Source File: ChuckNorrisApiServiceTest.java From Barricade with Apache License 2.0 | 5 votes |
private ChuckNorrisApiService getApiService() { HttpLoggingInterceptor httpLoggingInterceptor = new HttpLoggingInterceptor(); httpLoggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY); OkHttpClient okHttpClient = new OkHttpClient.Builder().addInterceptor(new BarricadeInterceptor()).addInterceptor(httpLoggingInterceptor).build(); Retrofit retrofit = new Retrofit.Builder().baseUrl(BASE_URL).client(okHttpClient).addConverterFactory(GsonConverterFactory.create()).build(); return retrofit.create(ChuckNorrisApiService.class); }
Example #17
Source File: RetroClient.java From RetrofitImageUpload with Apache License 2.0 | 5 votes |
/** * Get Retro Client * * @return JSON Object */ private static Retrofit getRetroClient() { return new Retrofit.Builder() .baseUrl(ROOT_URL) .addConverterFactory(GsonConverterFactory.create()) .build(); }
Example #18
Source File: ReadModel.java From Flora with MIT License | 5 votes |
public void getNews() { HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor(); interceptor.setLevel(HttpLoggingInterceptor.Level.BODY); OkHttpClient okHttpClient = new OkHttpClient.Builder().addInterceptor(interceptor).build(); Retrofit retrofit = new Retrofit.Builder() .baseUrl(Config.BASE_GANK) .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .client(okHttpClient) .build(); NewsService newsService = retrofit.create(NewsService.class); newsService.getTodayNews() .subscribeOn(Schedulers.io()) .observeOn(AndroidSchedulers.mainThread()) .subscribe(new Observer<NewsResponse>() { @Override public void onCompleted() { } @Override public void onError(Throwable e) { if (null != callback) { callback.onFail(e.getMessage()); } } @Override public void onNext(NewsResponse newsResponse) { if (null != callback) { callback.onSuccess(newsResponse); } } }); }
Example #19
Source File: FastRetrofit.java From FastLib with Apache License 2.0 | 5 votes |
private FastRetrofit() { sClientBuilder = new OkHttpClient.Builder(); sClientBuilder.addInterceptor(mHeaderInterceptor); sRetrofitBuilder = new Retrofit.Builder() .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(RxJava2CallAdapterFactory.create()); setTimeout(mDelayTime); FastMultiUrl.getInstance().with(sClientBuilder); }
Example #20
Source File: NetManager.java From TestChat with Apache License 2.0 | 5 votes |
public WXUserInfoApi getWXUserInfo() { if (sWXUserInfo == null) { synchronized (LOCK) { if (sWXUserInfo == null) { sWXUserInfo = new Retrofit.Builder().baseUrl(BASE_WX_URL) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .addConverterFactory(GsonConverterFactory.create()).client(client).build().create(WXUserInfoApi.class); } } } return sWXUserInfo; }
Example #21
Source File: ApiUtils.java From Barricade with Apache License 2.0 | 5 votes |
public static ChuckNorrisApiService getApiService() { HttpLoggingInterceptor httpLoggingInterceptor = new HttpLoggingInterceptor(); httpLoggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY); okHttpClient = new OkHttpClient.Builder().addInterceptor(new BarricadeInterceptor()).addInterceptor(httpLoggingInterceptor).build(); Retrofit retrofit = new Retrofit.Builder().baseUrl("https://api.chucknorris.io").client(okHttpClient).addConverterFactory(GsonConverterFactory.create()).build(); return retrofit.create(ChuckNorrisApiService.class); }
Example #22
Source File: NetworkServiceModule.java From Mysplash with GNU Lesser General Public License v3.0 | 5 votes |
@Provides public UserService getUserService(@ApplicationInstance OkHttpClient client, @ApplicationInstance GsonConverterFactory gsonConverterFactory, @ApplicationInstance RxJava2CallAdapterFactory rxJava2CallAdapterFactory, CompositeDisposable disposable) { return new UserService(client, gsonConverterFactory, rxJava2CallAdapterFactory, disposable); }
Example #23
Source File: NetModule.java From SampleApp with Apache License 2.0 | 5 votes |
@Singleton @Provides public RestService getRestService() { Retrofit retrofit = new Retrofit.Builder() .baseUrl(ApiConstants.BASE_URL) .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .client(getOkHttpClient()) .build(); return retrofit.create(RestService.class); }
Example #24
Source File: RetrofitManager.java From Collection-Android with MIT License | 5 votes |
private static Retrofit getNoCacheRetrofitWithoutHeaders() { if (mNoCacheRetrofitWithoutHeaders == null) { mNoCacheRetrofitWithoutHeaders = new Retrofit.Builder() .baseUrl(Config.URL_DOMAIN) .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(RxJava2CallAdapterFactory.create()) .client(getOkHttpClient(false,false)) .build(); } return mNoCacheRetrofitWithoutHeaders; }
Example #25
Source File: NetManager.java From NewFastFrame with Apache License 2.0 | 5 votes |
public void downLoad(final String url, DownloadListener listener) { if (url == null) { return; } FileInfo info = daoSession.query(url); if (info == null) { info = new FileInfo(url, FileUtil.clipFileName(url), DownloadStatus.NORMAL, 0, 0, 0, getDownLoadCacheDir()); daoSession.insert(info); } newFileInfoMap.put(url, info); Retrofit retrofit; DownLoadProgressObserver downLoadProgressObserver = new DownLoadProgressObserver(info, listener); if (stringRetrofitMap.containsKey(url)) { retrofit = stringRetrofitMap.get(url); } else { OkHttpClient.Builder builder = BaseApplication.getAppComponent().getOkHttpClientBuilder(); builder.addInterceptor(new DownLoadInterceptor(downLoadProgressObserver)); retrofit = new Retrofit.Builder().addCallAdapterFactory(RxJava2CallAdapterFactory.create()) .addConverterFactory(GsonConverterFactory.create(BaseApplication.getAppComponent().getGson())) .client(builder.build()).baseUrl(AppUtil.getBasUrl(url)).build(); stringRetrofitMap.put(url, retrofit); } retrofit.create(DownLoadApi.class) .downLoad("bytes=" + info.getLoadBytes() + "-", url) .subscribeOn(Schedulers.io()).map(responseBody -> writeCaches(responseBody, url)) .unsubscribeOn(Schedulers.io()).observeOn(AndroidSchedulers.mainThread()) .retryWhen(new RetryWhenNetworkException()) .doOnSubscribe(disposable -> addSubscription(disposable, url)) .subscribe(downLoadProgressObserver); }
Example #26
Source File: HttpUtil.java From AndroidFrame with Apache License 2.0 | 5 votes |
public static BeautyApi getBeautyApi() { if (beautyApi == null) { //设定日志级别 httpLoggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY); okHttpClient.addInterceptor(httpLoggingInterceptor); Retrofit retrofit = new Retrofit.Builder() .client(okHttpClient.build()) .baseUrl(Constants.getGankApi()) .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(callAdapterFactory) .build(); beautyApi = retrofit.create(BeautyApi.class); } return beautyApi; }
Example #27
Source File: RetrofitWrapper.java From nono-android with GNU General Public License v3.0 | 5 votes |
public static Retrofit getRetrofit(){ if(retrofit == null){ OkHttpClient okHttpClient= null; if(BuildConfig.DEBUG){ okHttpClient = new OkHttpClient.Builder() .addInterceptor(new Interceptor() { @Override public Response intercept(Chain chain) throws IOException { Request request = chain.request(); Response response = chain.proceed(request); Log.d("nono net request",String.valueOf( request.toString())); okhttp3.MediaType mediaType = response.body().contentType(); String content = response.body().string(); Log.i("nono net response", "response body:" + content); return response.newBuilder() .body(okhttp3.ResponseBody.create(mediaType, content)) .build(); } }) .build(); }else{ okHttpClient = new OkHttpClient.Builder().build(); } Retrofit.Builder getNoteServiceBuilder = new Retrofit.Builder(); getNoteServiceBuilder.baseUrl(NONoConfig.NONoURL) .client(okHttpClient) .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()); retrofit = getNoteServiceBuilder.build(); return retrofit; }else{ return retrofit; } }
Example #28
Source File: ApiFactory.java From AndroidSchool with Apache License 2.0 | 5 votes |
@NonNull private static Retrofit buildRetrofit() { return new Retrofit.Builder() .baseUrl(BuildConfig.API_ENDPOINT) .client(getClient()) .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .build(); }
Example #29
Source File: RetrofitHelper.java From MoeQuest with Apache License 2.0 | 5 votes |
/** * 煎蛋Api */ public static JianDanMeiziApi getJianDanApi() { Retrofit retrofit = new Retrofit.Builder() .baseUrl(BASE_JIANDAN_URL) .client(mOkHttpClient) .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .build(); return retrofit.create(JianDanMeiziApi.class); }
Example #30
Source File: RetrofitHelper.java From MoeQuest with Apache License 2.0 | 5 votes |
/** * Gank妹子Api */ public static GankMeiziApi getGankMeiziApi() { Retrofit retrofit = new Retrofit.Builder() .baseUrl(BASE_GANK_URL) .client(mOkHttpClient) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .addConverterFactory(GsonConverterFactory.create()) .build(); return retrofit.create(GankMeiziApi.class); }