com.akdeniz.googleplaycrawler.GooglePlay.DetailsResponse Java Examples

The following examples show how to use com.akdeniz.googleplaycrawler.GooglePlay.DetailsResponse. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GooglePlayAPI.java    From dummydroid with Apache License 2.0 5 votes vote down vote up
/**
 * Fetches detailed information about passed package name. If it is needed to
 * fetch information about more than one application, consider to use
 * <code>bulkDetails</code>.
 */
public DetailsResponse details(String packageName) throws IOException {
	ResponseWrapper responseWrapper = executeGETRequest(DETAILS_URL, new String[][] { {
			"doc",
			packageName }, });

	return responseWrapper.getPayload().getDetailsResponse();
}
 
Example #2
Source File: Unwrap.java    From raccoon4 with Apache License 2.0 5 votes vote down vote up
public static DetailsResponse detailsResponse(ResponseWrapper rw) {
	Payload pl = payload(rw);
	if (pl.hasDetailsResponse()) {
		return pl.getDetailsResponse();
	}
	return DetailsResponse.getDefaultInstance();
}
 
Example #3
Source File: GooglePlayAPI.java    From raccoon4 with Apache License 2.0 5 votes vote down vote up
/**
 * Fetches detailed information about passed package name. If it is needed to
 * fetch information about more than one application, consider to use
 * <code>bulkDetails</code>.
 */
public DetailsResponse details(String packageName) throws IOException {
	ResponseWrapper responseWrapper = executeGETRequest(DETAILS_URL,
			new String[][] { { "doc", packageName }, });

	return responseWrapper.getPayload().getDetailsResponse();
}
 
Example #4
Source File: GooglePlayAPI.java    From Raccoon with Apache License 2.0 5 votes vote down vote up
/**
 * Fetches detailed information about passed package name. If it is needed to
 * fetch information about more than one application, consider to use
 * <code>bulkDetails</code>.
 */
public DetailsResponse details(String packageName) throws IOException {
	ResponseWrapper responseWrapper = executeGETRequest(DETAILS_URL, new String[][] { {
			"doc",
			packageName }, });

	return responseWrapper.getPayload().getDetailsResponse();
}