2
私はサーバーから正常にレスポンス2.0.1を使用してレスポンスを取得していますが、非同期メソッドを使用せずにHTTP応答ステータスを取得する方法はありますか?同期リトロフィットでhttp応答ステータスを取得する方法2
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("http://192.168.8.4/********/***/")
.addConverterFactory(GsonConverterFactory.create())
.build();
RequestInterface request = retrofit.create(RequestInterface.class);
HotelDetail hd;
Call<HotelDetail> call1 = request.getIndividualHotel("1");
hd = call1.execute().body();
ありがとうございます。:) – user3349977