如何在没有 baseUrl 的情况下设置改造

2022-09-01 09:40:37

我的 apiPath 是完全动态的。我有包含“ipAddress”和“SSLprotocol”等字段的项目。基于它们,我可以建立我的网址:

private String urlBuilder(Server server) {
    String protocol;
    String address = "";

    if (AppTools.isDeviceOnWifi(activity)) {
        address = serverToConnect.getExternalIp();
    } else if (AppTools.isDeviceOnGSM(activity)) {
        address = serverToConnect.getInternalIp();
    }

    if (server.isShouldUseSSL()) {
        protocol = "https://";
    } else {
        protocol = "http://";
    }
    return protocol + address;
}

所以我的协议+地址可以是:http:// + 192.168.0.01:8010 = http://192.168.0.01:8010

我想这样使用它:

@FormUrlEncoded
@POST("{fullyGeneratedPath}/json/token.php")
Observable<AuthenticationResponse> authenticateUser(
            @Path("fullyGeneratedPath") String fullyGeneratedPath,
            @Field("login") String login,
            @Field("psw") String password,
            @Field("mobile") String mobile);

因此,例如,身份验证用户的完整路径将 http://192.168.0.01:8010/json/token.php

这意味着我不需要任何 basePath,因为我根据要连接到的服务器自己创建整个 basePath。

我的改造设置是:

@Provides
@Singleton
Retrofit provideRetrofit(OkHttpClient okHttpClient,
            Converter.Factory converterFactory,
            AppConfig appConfig) {
    Retrofit.Builder builder = new Retrofit.Builder();
    builder.client(okHttpClient)
            .baseUrl(appConfig.getApiBasePath())
            .addConverterFactory(converterFactory)
            .addCallAdapterFactory(RxJavaCallAdapterFactory.create());

    return builder.build();
}

如果我删除baseUrl,那么我得到错误,这个参数是必需的。所以我把我的apiBasePath设置为:

public String getApiBasePath() {
    return "";
}

然后,我在创建改造实例后立即收到错误:

java.lang.IllegalArgumentException: Illegal URL: 

如何解决?


答案 1

新的URL解析概念)中,您可以简单地在请求后指定整个路径。

此外,我们还可以在改造2.0的@Post中声明一个完整的URL:

public interface APIService {

    @POST("http://api.nuuneoi.com/special/user/list")
    Call<Users> loadSpecialUsers();

}

在这种情况下,将忽略基本 URL。


答案 2

就这样使用

public interface UserService {  
    @GET
    public Call<ResponseBody> profilePicture(@Url String url);
}


推荐