Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

java.lang.IllegalArgumentException: Illegal URL with retrofit

i'm trying to call an api in my application i've the following url template

test-test.domainname.com/feeds/json/v3/attribute/attribute

i'm using retrofit 2 but i get the following fatal exception

Illegal URL: test-test.domainname.com

and this is my interface

public interface Iinterface{
    @GET("feeds/json/v3/attribute/"+attribute)
    Call<ArrayList<result>>getresult();
}

can someone help me with this problem ...

like image 813
a3adel Avatar asked Jan 31 '16 13:01

a3adel


2 Answers

my base URL is here: http://myapiname.azurewebservices.net

and feed method is like that :

public interface Iinterface{
   @GET("/feeds/json/v3/attribute/"+attribute)
   Call<ArrayList<result>>getresult();
}

And working perfectly. Please add http or https and try again

like image 180
Yasin Kaçmaz Avatar answered Oct 13 '22 10:10

Yasin Kaçmaz


You do not have a protocol section. Prepend http:// or https:// depending on which applies to your url --

Retrofit retrofit = new Retrofit.Builder()
        .baseUrl("http://test-test.domainname.com")
        // ... other retrofit options
        .build();  
like image 30
iagreen Avatar answered Oct 13 '22 09:10

iagreen