diff --git a/mywust-core/src/main/java/cn/linghang/mywust/core/request/factory/library/LibraryRequestFactory.java b/mywust-core/src/main/java/cn/linghang/mywust/core/request/factory/library/LibraryRequestFactory.java index 46ca438..223302d 100644 --- a/mywust-core/src/main/java/cn/linghang/mywust/core/request/factory/library/LibraryRequestFactory.java +++ b/mywust-core/src/main/java/cn/linghang/mywust/core/request/factory/library/LibraryRequestFactory.java @@ -25,7 +25,7 @@ public class LibraryRequestFactory extends RequestFactory { } public static HttpRequest bookSearchRequest(String keyword, int page, int pageSize) { - return bookSearchRequest(new SearchRequest(keyword, page, pageSize)); + return bookSearchRequest(new SearchRequest(keyword, pageSize, page)); } public static HttpRequest bookSearchRequest(SearchRequest request) { diff --git a/mywust-core/src/main/java/cn/linghang/mywust/core/request/service/library/LibraryApiService.java b/mywust-core/src/main/java/cn/linghang/mywust/core/request/service/library/LibraryApiService.java index cd56803..7803ffb 100644 --- a/mywust-core/src/main/java/cn/linghang/mywust/core/request/service/library/LibraryApiService.java +++ b/mywust-core/src/main/java/cn/linghang/mywust/core/request/service/library/LibraryApiService.java @@ -21,46 +21,46 @@ public class LibraryApiService extends LibraryApiServiceBase { HttpResponse response = requester.post(request); checkResponse(response); - return request.getStringData(); + return response.getStringBody(); } public String getBookDetail(String bookId) throws ApiException, IOException { HttpRequest request = LibraryRequestFactory.bookInfoRequest(bookId); - HttpResponse response = requester.post(request); + HttpResponse response = requester.get(request); checkResponse(response); - return request.getStringData(); + return response.getStringBody(); } public String getBookCoverImageUrl(String isbn) throws ApiException, IOException { HttpRequest request = LibraryRequestFactory.bookCoverImageUrlRequest(isbn); - HttpResponse response = requester.post(request); + HttpResponse response = requester.get(request); checkResponse(response); - return request.getStringData(); + return response.getStringBody(); } public String getOverdueSoon(String cookie) throws ApiException, IOException { HttpRequest request = LibraryRequestFactory.overdueSoonRequest(cookie); - HttpResponse response = requester.post(request); + HttpResponse response = requester.get(request); checkResponse(response); - return request.getStringData(); + return response.getStringBody(); } public String getCurrentLoan(String cookie) throws ApiException, IOException { HttpRequest request = LibraryRequestFactory.currentLoanRequest(cookie); - HttpResponse response = requester.post(request); + HttpResponse response = requester.get(request); checkResponse(response); - return request.getStringData(); + return response.getStringBody(); } public String getLoanHistory(String cookie) throws ApiException, IOException { HttpRequest request = LibraryRequestFactory.loanHistoryRequest(cookie); - HttpResponse response = requester.post(request); + HttpResponse response = requester.get(request); checkResponse(response); - return request.getStringData(); + return response.getStringBody(); } } \ No newline at end of file