Как я могу получить URL-адрес строки запроса, который был отправлен на модификацию robospice?

Я искал, но не нашел полезной информации. Пытаясь разобраться с клиентом REST API, я использую robospice в связке с retofit, хочу посмотреть строку запроса, которая отправляется в сервис. Можно ли вытащить целую строку URL-адреса из Robospice или Retrofit?

Вот мой интерфейс:

public interface GoogleSearchInterface {
public static final String BASE_URL = "https://www.googleapis.com/customsearch";
public static final String API_KEY = "AIzaSyCCuxxVLzm2sZP-adhRNYKeSck1mMMgsAM";
public static final String CUSTOM_SEARCH_ID = "001734592082236324715:sob9rqk49yg";
public static final String SEARCH_TYPE_IMAGE = "image";
static final String FILTER = "&fields=queries(nextPage(startIndex,count),request(startIndex,count)),searchInformation(totalResults),items(title,link,displayLink,mime," +
        "image)";
static final String QUERY = "/v1?key="+API_KEY+
                            "&cx="+CUSTOM_SEARCH_ID+
                            "&searchType="+SEARCH_TYPE_IMAGE+FILTER;

@GET(QUERY)
public GoogleSearchResponse search(@Query("q") String query,
                                   @Query("start") long startIndex);
@GET(QUERY)
public GoogleSearchResponse search(@Query("q") String query,
                                   @Query("start") long startIndex,
                                   @Query("searchType") String searchType,
                                   @Query("limit") String limit,
                                   @Query("offset") String offset);

SpiceRequest

 String query;
long startIndex;
String limit;
String offset;

public SampleRetrofitSpiceRequest(String query,long startIndex,String limit,String offset) {
    super(GoogleSearchResponse.class,GoogleSearchInterface.class);
    this.query = query;
    this.startIndex = startIndex;
    this.limit=limit;
    this.offset=offset;
}

public SampleRetrofitSpiceRequest(String query, long startIndex) {
    super(GoogleSearchResponse.class, GoogleSearchInterface.class);
    this.query = query;
    this.startIndex = startIndex;
}
@Override
public GoogleSearchResponse loadDataFromNetwork() throws Exception {
    return getService().search(query,startIndex);
}

SpiceService

public class SampleRetrofitSpiceService extends RetrofitGsonSpiceService {
@Override
public void onCreate() {
    super.onCreate();
    addRetrofitInterface(GoogleSearchInterface.class);
}

@Override
protected String getServerUrl() {
    return GoogleSearchInterface.BASE_URL;
}

Метод отправки запроса

 public void sendRequest(String query,int page){
    searchQuery = query;
    request = new SampleRetrofitSpiceRequest(query, page);
   spiceManager.execute(request, query, DurationInMillis.ONE_WEEK, new RequestImageListener());
 /*   try {
        spiceManager.getFromCache(GoogleSearchResponse.class, "country",DurationInMillis.ONE_WEEK,new RequestImageListener());
    }catch(Exception e){
        e.printStackTrace();
    }*/
    request=null;
}

P.S. Я пишу приложение, которое будет выполнять поиск изображений, первые 10 результатов успешно загружаются, но следующая страница повторяет предыдущую страницу. Я борюсь с этим много времени, параметр &start google api, отправленный в spiceRequest, игнорируется. Спасибо.


person Dennis Zinkovski    schedule 13.07.2015    source источник


Ответы (1)


Решение состояло в том, чтобы переопределить этот метод в пользовательском SpiceService.class.

 @Override
protected RestAdapter.Builder createRestAdapterBuilder() {
    RestAdapter.Builder builder = new RestAdapter.Builder()
            .setLogLevel(RestAdapter.LogLevel.BASIC)
            .setConverter(getConverter())
            .setEndpoint(getServerUrl());
    return builder;
}
person Dennis Zinkovski    schedule 19.07.2015