how to set params from @get from retrofit code example
Example: how to set params from @get from retrofit
public interface FooService {
@GET("/maps/api/geocode/json?sensor=false")
void getPositionByZip(@Query("address") String address, Callback<String> cb);
}