我是新使用retrofit2和rxjava,我能够使用GET从api获取信息,但现在,使用POST的登录请求是不工作的,如何假设。
Application application = Application.get(mLoginView.getContext());
Service Service = application.getmService();
Log.i(TAG,""+username);
Log.i(TAG,""+password);
mSubscription = Service.login(username,password)
.observeOn(AndroidSchedulers.mainThread())
.subscribeOn(Schedulers.io())
.subscribe(new Subscriber<User>() {
@Override
public void onCompleted() {
Log.i(TAG,"User: " + mUser.getHash());
}
@Override
public void onError(Throwable e) {
e.printStackTrace();
Log.i(TAG,"USERNAME DON'T EXIST");
}
@Override
public void onNext(User user) {
// LoginPresenter.this.mUser = user;
}
});
服务:public interface Service {
String mUrl = "https://blabla.com/api/index.php/"; // TODO Change
@FormUrlEncoded
@POST("user/login")
Observable<User> login(@Field(value="email",encoded=true) String email, @Field(value="password",encoded = true) String password );
我输入一个带有用户名的POST,并从现有用户传递,并返回我一个404页面,而不是我应该得到的哈希值。
谢谢
我忘了这是在这里,我在几个月前找到了一个解决方案,我所做的是创建一个对象UserCredentials来执行body请求和一个对象来获取响应。
@POST("user/login")
Observable<LoginResponse> login(@Body UserCredentials userCredentials);