改进GET参数错误

时间:2017-03-11 06:34:01

标签: android retrofit2

虽然我在控制台上没有例外,但是使用@PATH将参数传递给GET请求会破坏URL并生成404响应。

  @GET("user/authentif/{login}/{pwd}")
  Call<User> login(@Path("login") String login,@Path("pwd") String pwd);

这就是电话

    apiService = RestService.createService(SolarAPIService.class);
    Call<User> call=apiService.login(email,pass);
    call.enqueue(new Callback<User>() {
        @Override
        public void onResponse(Call<User> call, Response<User> response) {
            mEmailView.setText(Integer.toString(response.code()));
        }
    }
);

1 个答案:

答案 0 :(得分:0)

事实证明,我使用getEditableText代替getText,因此mya参数为null并导致404未找到错误