我正在使用Retrofit解析数据。由于我曾经将BASE URL和END POINTS提供给Retrofit Request,我不知道如何将IP ADDRESS作为BASE URL。
我想使用以下网址: http://xxx.xxx.xx.xxx:xxxx/
是否有任何建议如何设置 BASE URL和END POINT ?
答案 0 :(得分:4)
我正在使用如下改进2。
URL_BASE = http://192.168.1.11:8080
Retrofit retrofit = new Retrofit.Builder()
.client(httpClient)
.baseUrl(URL_BASE + "/")
.addConverterFactory(GsonConverterFactory.create())
.build();
终点:http://192.168.1.11:8080/users
@GET("users")
Call<Response> getUser();