我正在编写一个Android应用程序,它将使用Retrofit来发出API请求。
我有一个这样的助手类:
public class ApiService {
public static final String TAG = ApiService.class.getSimpleName();
public static final String BASE_URL = "https://myapiurl.com";
public static void testApi(){
ApiEndpointInterface apiService = prepareService();
apiService.ping(new Callback<Response>() {
@Override
public void success(Response apiResponse, retrofit.client.Response response) {
Log.e(TAG, apiResponse.toString());
}
@Override
public void failure(RetrofitError error) {
Log.e("Retrofit:", error.toString());
}
});
}
private static ApiEndpointInterface prepareService() {
RestAdapter restAdapter = new RestAdapter.Builder()
.setEndpoint(BASE_URL)
.build();
ApiEndpointInterface apiService =
restAdapter.create(ApiEndpointInterface.class);
restAdapter.setLogLevel(RestAdapter.LogLevel.FULL);
return apiService;
}
}
我实际的Retrofit实现很简单:
public class ApiEndpointInterface {
@GET("/v1/myendpoint")
void ping(Callback<Response> cb);
}
问题是,我无法构建项目,我收到错误:
Error:(12, 10) error: missing method body, or declare abstract
参考我的ApiEndpointInterface类。
知道发生了什么事吗?
答案 0 :(得分:10)
尝试使用public interface
进行API声明。
public interface ApiEndpointInterface {
@GET("/v1/myendpoint")
void ping(Callback<Response> cb);
}
另外,看起来你在创建ApiEndpointInterface之前告诉构建器将日志级别设置为full。
private static ApiEndpointInterface prepareService() {
RestAdapter restAdapter = new RestAdapter.Builder()
.setEndpoint(BASE_URL)
.setLogLevel(RestAdapter.LogLevel.FULL);
.build();
ApiEndpointInterface apiService =
restAdapter.create(ApiEndpointInterface.class);
return apiService;
}
答案 1 :(得分:1)
如果您更新到okHttp版本2.4.0,您将获得空Body的异常,因为最新版本不再允许零长度请求,在这种情况下您将不得不使用以下语法
public interface ApiEndpointInterface {
@GET("/v1/myendpoint")
void ping(Callback<Response> cb, @Body String dummy);
}
致电
ApiEndpointInterface apiService =
restAdapter.create(ApiEndpointInterface.class);
apiService.ping(callback,"");