如何使這個查詢,我會在下面提及?方法@GET
。查詢應該是這樣的:使用json進行GET查詢 - Retrofit 2.0
/top40?data={"ranking":"world"}
/top40?data={"ranking":"country"}
@GET("/api/top40")
Call<FamousTop40Model> getStatus(
// what should be there?
);
class Factory {
private static FamousTop40Api service;
public static FamousTop40Api getInstance() {
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(ApiConstants.BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build();
service = retrofit.create(FamousTop40Api.class);
return service;
}
}
你們能幫助我嗎?
編輯:+我應該有accessKey
在標題中。
你想要獲取或放置請求? – Drv
獲取請求,但在接收到的API中,據說我應該發送json來接收數據。甚至可以在Get中發送json參數? – y07k2
你可以按照下面的回答。@ y07k2 – Lampard