Skip to content

Instantly share code, notes, and snippets.

@shelajev
Created January 15, 2016 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shelajev/aa30f43ecaba93c95f5a to your computer and use it in GitHub Desktop.
Save shelajev/aa30f43ecaba93c95f5a to your computer and use it in GitHub Desktop.
retrofit2-Retrofit-call.java
GitHubService gitHubService = GitHubService.retrofit.create(GitHubService.class);
Call<List<Contributor>> call = gitHubService.repoContributors(“square”, “retrofit”);
List<Contributor> result = call.execute().body();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment