コード例 #1
0
  /**
   * Sends off a reiview query for the given product Id. It sorts the results by rating from highest
   * to lowest.
   *
   * @param prodId the product id
   * @param listener the response listener
   */
  public static void runReviewQuery(String prodId, OnBazaarResponse listener) {
    BazaarRequest request = new BazaarRequest(API_URL, API_KEY, API_VERSION);
    DisplayParams params = new DisplayParams();

    params.addFilter("ProductId", Equality.EQUAL, prodId);
    params.setLimit(10);

    // false => descending order
    params.addSort("Rating", false);

    OnBazaarResponse response = listener;
    request.sendDisplayRequest(RequestType.REVIEWS, params, response);
  }