本文整理匯總了Java中com.akdeniz.googleplaycrawler.GooglePlay.ReviewResponse類的典型用法代碼示例。如果您正苦於以下問題:Java ReviewResponse類的具體用法?Java ReviewResponse怎麽用?Java ReviewResponse使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ReviewResponse類屬於com.akdeniz.googleplaycrawler.GooglePlay包,在下文中一共展示了ReviewResponse類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: reviews
import com.akdeniz.googleplaycrawler.GooglePlay.ReviewResponse; //導入依賴的package包/類
/**
* Fetches the reviews of given package name by sorting passed choice.
*
* Default values for offset and numberOfResult are "0" and "20" respectively.
* These values are determined by Google Play Store.
*/
public ReviewResponse reviews(String packageName, REVIEW_SORT sort, Integer offset,
Integer numberOfResult) throws IOException {
ResponseWrapper responseWrapper = executeGETRequest(REVIEWS_URL, new String[][] {
{ "doc", packageName },
{ "sort", (sort == null) ? null : String.valueOf(sort.value) },
{ "o", (offset == null) ? null : String.valueOf(offset) },
{ "n", (numberOfResult == null) ? null : String.valueOf(numberOfResult) } });
return responseWrapper.getPayload().getReviewResponse();
}
示例2: reviews
import com.akdeniz.googleplaycrawler.GooglePlay.ReviewResponse; //導入依賴的package包/類
/**
* Fetches the reviews of given package name by sorting passed choice.
*
* Default values for offset and numberOfResult are "0" and "20" respectively.
* These values are determined by Google Play Store.
*/
public ReviewResponse reviews(String packageName, REVIEW_SORT sort, Integer offset,
Integer numberOfResult) throws IOException {
ResponseWrapper responseWrapper = executeGETRequest(REVIEWS_URL, new String[][] {
{ "doc", packageName },
{ "sort", (sort == null) ? null : String.valueOf(sort.value) },
{ "o", (offset == null) ? null : String.valueOf(offset) },
{ "n", (numberOfResult == null) ? null : String.valueOf(numberOfResult) } });
return responseWrapper.getPayload().getReviewResponse();
}