(1)使用註解的方式
新增乙個header引數
public inte***ce userservice
新增多個header引數
public inte***ce userservice )
@get("/tasks/")
callgettask(@path("task_id") long taskid);
}
(2)使用**的方式,則需要使用***
(3)使用註解的方式,但是header引數每次提交的都不同,也就是動態的header
public inte***ce userservice
注意:以上都是在retrofit2.0及以上使用的。
Retrofit上傳頭像
retrofit retrofit new retrofit.builder baseurl addconverte ctory gsonconverte ctory.create gson工廠類 build githubapi api retrofit.create githubapi.class...
Retrofit網路請求
retrofit 一 特點 效能最好,處理最快 使用rest api時非常方便 傳輸層預設就使用okhttp 支援nio 擁有出色的api文件和社群支援 速度上比volley更快 如果你的應用程式中整合了okhttp,retrofit缺省會使用okhttp處理其他網路層請求。預設使用gson 二 使...
Retrofit簡單使用
新增retrofit依賴 compile com.squareup.retrofit2 retrofit 2.3.0 新增gson轉換器的依賴 compile com.squareup.retrofit2 converter gson 2.3.0 配置服務介面 public inte ce apis...