这是我的UserService接口
@GET(Constants.Api.URL_LOGIN)
String loginUser(@Field("email") String email, @Field("password") String pass, @Field("secret") String secret, @Field("device_id") String deviceid, @Field("pub_key") String pubkey, @Field("device_name") String devicename);
在活动中我调用
retrofit = new Retrofit.Builder()
.baseUrl(Constants.Api.URL_BASE)
.addConverterFactory(GsonConverterFactory.create())
.addCallAdapterFactory(RxJavaCallAdapterFactory.create())
.build();
service = retrofit.create(UserService.class);
String status = service.loginUser(loginedt.getText().toString(), passwordedt.getText().toString(), secret, device_id, pub_key, device_name);
这会创建一个异常
java.lang.IllegalArgumentException: Unable to create call adapter for class java.lang.String
for method UserService.loginUser
我做错了什么?
Gradle:
compile 'com.squareup.retrofit:retrofit:2.+'
compile 'com.squareup.retrofit:adapter-rxjava:2.0.0-beta1'
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta1'
既然您已经包含了addCallAdapterFactory(RxJavaCallAdapterFactory.create())
,那么您希望使用Observable
来管理您的调用。在你的接口中,显式地给出参数化的Observable
而不是Call
——
@GET(Constants.Api.URL_LOGIN)
Observable<String> loginUser(@Field("email") String email, @Field("password") String pass, @Field("secret") String secret, @Field("device_id") String deviceid, @Field("pub_key") String pubkey, @Field("device_name") String devicename);
,然后你的service
方法为你创建可观察对象,你可以订阅或使用作为可观察管道的开始。
Observable<String> status = service.loginUser(loginedt.getText().toString(), passwordedt.getText().toString(), secret, device_id, pub_key, device_name);
status.subscribe(/* onNext, onError, onComplete handlers */);
Aleksei,如果您需要最简单的解决方案来从Retrofit库获得String结果,那么您必须执行以下几个调用:
-
首先,Gradle dependencies:
compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4' compile 'com.squareup.retrofit2:converter-scalars:2.0.0-beta4'
-
修改后的UserService接口
@GET(Constants.Api.URL_LOGIN) Call< String> loginUser(@Field("email") String email, @Field("password") String pass, @Field("secret") String secret, @Field("device_id") String deviceid, @Field("pub_key") String pubkey, @Field("device_name") String devicename);
-
服务客户端创建代码:
static UserService SERVICE_INSTANCE = (new Retrofit.Builder() .baseUrl(Constants.Api.URL_BASE) .addConverterFactory(ScalarsConverterFactory.create()) .build()).create(UserService.class);
-
调用请求:
SERVICE_INSTANCE.loginUser(*all your params*).execute().body();
我希望,解决方案是明确的,并显示简单的字符串接收方法。如果您需要其他数据解析器,请查看这里的转换器列表Retrofit CONVERTERS