Oleg Ivashko
Results
1
comments of
Oleg Ivashko
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 = new Instagram(httpClient); Account account = instagram.getAccountByUsername("kevin"); System.out.println(account.getMedia().getCount()); Have the...