I want get RSS code from a URL with Retrofit and if I enter url staticly in the get annotation everything is OK but with dynamic url I get an error.
Retrofit
My
Also make sure you add @Query or @Field for all the parameters , depending on whether you issuing GET/POST.
@Query
@Field
eg:
@GET("/api/Books/GetAll") void GetRecentBooks(@Query int Offset, Callback> cb);