本文整理汇总了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();
}