Method: conferenceRecords.transcripts.entries.list
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
列出每个转写内容的结构化转写内容条目。默认按开始时间升序排列。
注意:Google Meet API 返回的转写条目可能与 Google 文档转写文件中找到的转写内容不一致。当 1) 发言人在几毫秒内交错,或 2) Google 文档转写文件在生成后被修改时,就可能会出现这种情况。
HTTP 请求
GET https://meet.googleapis.com/v2/{parent=conferenceRecords/*/transcripts/*}/entries
网址采用 gRPC 转码语法。
路径参数
参数 |
parent |
string
必需。格式:conferenceRecords/{conferenceRecord}/transcripts/{transcript}
|
查询参数
参数 |
pageSize |
integer
要返回的条目数量上限。服务返回的值可能小于此值。如果未指定,则最多返回 10 个条目。最大值为 100;高于 100 的值将强制转换为 100。上限未来可能会发生变化。
|
pageToken |
string
上一个列表调用返回的页面令牌。
|
响应正文
entries.list 方法的响应。
如果成功,响应正文将包含结构如下的数据:
JSON 表示法 |
{
"transcriptEntries": [
{
object (TranscriptEntry )
}
],
"nextPageToken": string
} |
字段 |
transcriptEntries[] |
object (TranscriptEntry )
一个页面中的 TranscriptEntry 列表。
|
nextPageToken |
string
如果当前列表不包含所有转写条目,则要循环回来以进行进一步的 List 调用的令牌。如果返回所有条目,则不设置。
|
授权范围
需要以下 OAuth 范围之一:
https://www.googleapis.com/auth/meetings.space.created
https://www.googleapis.com/auth/meetings.space.readonly
如需了解详情,请参阅授权指南。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-25。
[null,null,["最后更新时间 (UTC):2025-07-25。"],[],[],null,["# Method: conferenceRecords.transcripts.entries.list\n\n- [HTTP request](#body.HTTP_TEMPLATE)\n- [Path parameters](#body.PATH_PARAMETERS)\n- [Query parameters](#body.QUERY_PARAMETERS)\n- [Request body](#body.request_body)\n- [Response body](#body.response_body)\n - [JSON representation](#body.ListTranscriptEntriesResponse.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n- [Try it!](#try-it)\n\nLists the structured transcript entries per transcript. By default, ordered by start time and in ascending order.\n\nNote: The transcript entries returned by the Google Meet API might not match the transcription found in the Google Docs transcript file. This can occur when 1) we have interleaved speakers within milliseconds, or 2) the Google Docs transcript file is modified after generation.\n\n### HTTP request\n\n`GET https://meet.googleapis.com/v2/{parent=conferenceRecords/*/transcripts/*}/entries`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Path parameters\n\n| Parameters ||\n|----------|--------------------------------------------------------------------------------------------|\n| `parent` | `string` Required. Format: `conferenceRecords/{conferenceRecord}/transcripts/{transcript}` |\n\n### Query parameters\n\n| Parameters ||\n|-------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `pageSize` | `integer` Maximum number of entries to return. The service might return fewer than this value. If unspecified, at most 10 entries are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future. |\n| `pageToken` | `string` Page token returned from previous List Call. |\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nResponse for entries.list method.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"transcriptEntries\": [ { object (/workspace/meet/api/reference/rest/v2/conferenceRecords.transcripts.entries#TranscriptEntry) } ], \"nextPageToken\": string } ``` |\n\n| Fields ||\n|-----------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `transcriptEntries[]` | `object (`[TranscriptEntry](/workspace/meet/api/reference/rest/v2/conferenceRecords.transcripts.entries#TranscriptEntry)`)` List of TranscriptEntries in one page. |\n| `nextPageToken` | `string` Token to be circulated back for further List call if current List doesn't include all the transcript entries. Unset if all entries are returned. |\n\n### Authorization scopes\n\nRequires one of the following OAuth scopes:\n\n- `https://www.googleapis.com/auth/meetings.space.created`\n- `https://www.googleapis.com/auth/meetings.space.readonly`\n\nFor more information, see the [Authorization guide](/workspace/guides/configure-oauth-consent)."]]