gplay reviews list
List the user reviews the Google Play API exposes for --package.
The API only returns reviews from the LAST 7 DAYS; a WARN line to that effect is always printed to stderr (long-history retrieval via GCS CSV reports is on the backlog). Results are auto-paginated until exhausted.
--stars filters client-side and accepts a single rating (1), an inclusive range (1-2), or a set (1,3,5); each rating must be 1..5. --limit N caps the final count after filtering (0 = no cap).
Default table columns: date, stars, locale, reviewId, summary. Override with --columns stars,reviewId,... (--output json is the {"reviews":[...]} pass-through reflecting the filtered set; --output markdown renders a Markdown table.)
gplay reviews list [flags]| Flag | Description |
|---|---|
--columns string | comma-separated table columns to show (default: date,stars,locale,reviewId,summary) |
--limit int | cap the result count after filtering (0 = no cap) |
--output string | output format: table, json, or markdown (default: auto — table on TTY, json in pipes/CI) |
--package string | Android package name (overrides .gplay/config.json pin) |
--stars string | client-side star filter: 1, 1-2, or 1,3,5 (each rating 1..5) |
Global flags
Section titled “Global flags”| Flag | Description |
|---|---|
--account string | name of a stored Account to use (overrides env and active Account) |
--retry int | retry transient failures (transport errors, 5xx, 429) up to N times with exponential backoff (default: 0, no retry) |
--service-account string | path to a service-account JSON, or inline JSON content (overrides --account, env, and active Account) |
--timeout duration | per-request API timeout, e.g. 30s or 2m (default: 60s for control-plane calls, none for uploads) |
-v, --verbose | log flow steps to stderr (info level) |