Saiirex
Results
1
issues of
Saiirex
Hey, if i am trying to do this: ``` HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor(); loggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY); OkHttpClient httpClient = new OkHttpClient.Builder() .addNetworkInterceptor(loggingInterceptor) .addInterceptor(new ErrorInterceptor()) .cookieJar(new DefaultCookieJar(new CookieHashSet())) .build(); Instagram instagram =...