The situation is as follows
public void requestAllJobs() { Retrofit retrofit = new Retrofit.Builder() .baseUrl(Constants.URL) .addConverterFactory(GsonConverterFactory.create()) .build();
Where
public static final String URL = "http://openapi.ro/api/addresses.json?description=Bucuresti";
Produces the following error
Caused by: java.lang.IllegalArgumentException: baseUrl must end in /: http://openapi.ro/api/addresses.json?description=Bucuresti
Please tell me what could be the problem?