本文源码版本是2.3.0,是一个mavan项目,建议用IDEA打开。
1.官网介绍

2.源码解析
我们根据这段代码来看源码:
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("https://api.github.com/")
.addConverterFactory(GsonConverterFactory.create())
.build();
GitHubService service = retrofit.create(GitHubService.class);
Call<List<Repo>> reposCall = service.listRepos("octocat");
List<Repo> repos= reposCall.execute().body();//同步
reposCall.enqueue(new Callback<List<Contributor&g