2011-09-07 2 views
0

Java 클라이언트 라이브러리를 사용하여 특정 날짜 이후에 업로드 된 Google 문서를 검색하고 싶습니다. 이 코드를 사용Java 클라이언트 라이브러리에서 날짜 별 쿼리 사용 방법은 무엇입니까?

DocumentQuery query = new DocumentQuery(feedUri); 
query.setPublishedMin(new DateTime(new Date().getTime())); 

내가 그런 예외를 얻을 :

com.google.gdata.util.ServiceForbiddenException: This service does not support the 'published-min' parameter. 
at com.google.gdata.client.http.HttpGDataRequest.handleErrorResponse(HttpGDataRequest.java:593) 
at com.google.gdata.client.http.GoogleGDataRequest.handleErrorResponse(GoogleGDataRequest.java:563) 
at com.google.gdata.client.http.HttpGDataRequest.checkResponse(HttpGDataRequest.java:550) 
at com.google.gdata.client.http.HttpGDataRequest.execute(HttpGDataRequest.java:530) 
at com.google.gdata.client.http.GoogleGDataRequest.execute(GoogleGDataRequest.java:535) 
at com.google.gdata.client.Service.getFeed(Service.java:1135) 
at com.google.gdata.client.Service.getFeed(Service.java:1077) 
at com.google.gdata.client.GoogleService.getFeed(GoogleService.java:662) 
at com.google.gdata.client.Service.getFeed(Service.java:1034) 
at ua.com.stormlabs.gap.gdocs.GDocumentsRetriever.getAllDocs(GDocumentsRetriever.java:84) 
at ua.com.stormlabs.gap.gdocs.GDocsServiceProcessor.start(GDocsServiceProcessor.java:56) 
at ua.com.stormlabs.gap.gdocs.GDocsGapApp.main(GDocsGapApp.java:21) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 
at java.lang.reflect.Method.invoke(Method.java:597) 
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120) 

답변

관련 문제