Method: apps.search
HTTP 请求
GET https://playdeveloperreporting.googleapis.com/v1alpha1/apps:search
网址采用 gRPC 转码语法。
查询参数
参数 |
pageSize |
integer
要返回的应用数量上限。服务返回的值可能小于此值。如果未指定,则最多返回 50 个应用。最大值为 1000;大于 1000 的值将被强制转换为 1000。
|
pageToken |
string
从之前的 apps.search 调用接收的页面令牌。提供此令牌以检索后续页面。进行分页时,提供给 apps.search 的所有其他参数必须与提供页面令牌的调用匹配。
|
响应正文
apps.search
的响应消息。
如果成功,响应正文将包含结构如下的数据:
JSON 表示法 |
{
"apps": [
{
object (App )
}
],
"nextPageToken": string
} |
字段 |
apps[] |
object (App )
调用端点的用户可访问的应用。
|
nextPageToken |
string
可作为 pageToken 发送并用于检索下一页的令牌。如果省略此字段,则不存在后续页面。
|
授权范围
需要以下 OAuth 作用域:
https://www.googleapis.com/auth/playdeveloperreporting
有关详情,请参阅 OAuth 2.0 概览。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2023-11-29。
[null,null,["最后更新时间 (UTC):2023-11-29。"],[[["Searches for Apps accessible by the user via a GET request."],["Request parameters include `pageSize` to limit the maximum number of apps returned and `pageToken` for pagination."],["The response body contains a list of accessible apps and a token for retrieving subsequent pages, if available."],["Requires authorization with the `https://www.googleapis.com/auth/playdeveloperreporting` scope."]]],["This API endpoint facilitates searching for user-accessible apps via a `GET` request to `https://playdeveloperreporting.googleapis.com/v1alpha1/apps:search`. It accepts `pageSize` and `pageToken` as query parameters, with an empty request body. The response contains an array of `apps` and a `nextPageToken` for pagination. The maximum page size is 1000, defaulting to 50. Successful authorization requires the `https://www.googleapis.com/auth/playdeveloperreporting` OAuth scope.\n"]]