Google Classroom 外掛程式現已全面開放開發人員使用!詳情請參閱
外掛程式說明文件。
Method: courses.courseWork.rubrics.list
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
傳回要求者可查看的評量標準清單。
這個方法會傳回下列錯誤代碼:
PERMISSION_DENIED
代表存取錯誤。
INVALID_ARGUMENT
:如果要求格式錯誤。
NOT_FOUND
如果要求的課程或課程作業不存在,或是使用者無法存取對應的課程作業。
HTTP 要求
GET https://classroom.googleapis.com/v1/courses/{courseId}/courseWork/{courseWorkId}/rubrics
這個網址使用 gRPC 轉碼語法。
路徑參數
參數 |
courseId |
string
必要欄位。課程的 ID。
|
courseWorkId |
string
必要欄位。課程作業的 ID。
|
查詢參數
參數 |
pageSize |
integer
要傳回的評量表數量上限。如未指定,最多會傳回 1 個評分標準。許可的最大值為 1;超出的數值將一律指定為 1。
|
pageToken |
string
先前 list 呼叫傳回的 nextPageToken 值,表示應傳回後續的結果頁面。 list 要求必須與產生此權杖的要求完全相同。
|
previewVersion |
enum (PreviewVersion )
選用設定。API 的預覽版。如要存取預覽計畫中提供給開發人員的新 API 功能,必須設定這個值。
|
回應主體
列出評分標準時的回應。
如果成功,回應主體會含有以下結構的資料:
JSON 表示法 |
{
"rubrics": [
{
object (Rubric )
}
],
"nextPageToken": string
} |
欄位 |
rubrics[] |
object (Rubric )
符合要求的評量標準。
|
nextPageToken |
string
用於識別要傳回的下一頁結果的符記。如果留空,表示沒有其他結果。
|
授權範圍
需要下列其中一種 OAuth 範圍:
https://www.googleapis.com/auth/classroom.coursework.students.readonly
https://www.googleapis.com/auth/classroom.coursework.me.readonly
https://www.googleapis.com/auth/classroom.coursework.students
https://www.googleapis.com/auth/classroom.coursework.me
詳情請參閱授權指南。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-07-25 (世界標準時間)。
[null,null,["上次更新時間:2025-07-25 (世界標準時間)。"],[],[],null,["# Method: courses.courseWork.rubrics.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.ListRubricsResponse.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n- [Try it!](#try-it)\n\nReturns a list of rubrics that the requester is permitted to view.\n\nThis method returns the following error codes:\n\n- `PERMISSION_DENIED` for [access errors](/workspace/classroom/reference/Access.Errors).\n- `INVALID_ARGUMENT` if the request is malformed.\n- `NOT_FOUND` if the requested course or course work doesn't exist or if the user doesn't have access to the corresponding course work.\n\n### HTTP request\n\n`GET https://classroom.googleapis.com/v1/courses/{courseId}/courseWork/{courseWorkId}/rubrics`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Path parameters\n\n| Parameters ||\n|----------------|---------------------------------------------------|\n| `courseId` | `string` Required. Identifier of the course. |\n| `courseWorkId` | `string` Required. Identifier of the course work. |\n\n### Query parameters\n\n| Parameters ||\n|------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `pageSize` | `integer` The maximum number of rubrics to return. If unspecified, at most 1 rubric is returned. The maximum value is 1; values above 1 are coerced to 1. |\n| `pageToken` | `string` [nextPageToken](/workspace/classroom/reference/rest/v1/courses.courseWork.rubrics/list#body.ListRubricsResponse.FIELDS.next_page_token) value returned from a previous [list](/workspace/classroom/reference/rest/v1/courses.courseWork.rubrics/list#google.classroom.v1.Rubrics.ListRubrics) call, indicating that the subsequent page of results should be returned. The [list](/workspace/classroom/reference/rest/v1/courses.courseWork.rubrics/list#google.classroom.v1.Rubrics.ListRubrics) request must be otherwise identical to the one that resulted in this token. |\n| `previewVersion` | `enum (`[PreviewVersion](/workspace/classroom/reference/rest/v1/PreviewVersion)`)` Optional. The preview version of the API. This must be set in order to access new API capabilities made available to developers in the Preview Program. |\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nResponse when listing rubrics.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|-------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"rubrics\": [ { object (/workspace/classroom/reference/rest/v1/courses.courseWork.rubrics#Rubric) } ], \"nextPageToken\": string } ``` |\n\n| Fields ||\n|-----------------|---------------------------------------------------------------------------------------------------------------------------------|\n| `rubrics[]` | `object (`[Rubric](/workspace/classroom/reference/rest/v1/courses.courseWork.rubrics#Rubric)`)` Rubrics that match the request. |\n| `nextPageToken` | `string` Token identifying the next page of results to return. If empty, no further results are available. |\n\n### Authorization scopes\n\nRequires one of the following OAuth scopes:\n\n- `https://www.googleapis.com/auth/classroom.coursework.students.readonly`\n- `\n https://www.googleapis.com/auth/classroom.coursework.me.readonly`\n- `\n https://www.googleapis.com/auth/classroom.coursework.students`\n- `\n https://www.googleapis.com/auth/classroom.coursework.me`\n\nFor more information, see the [Authorization guide](/workspace/guides/configure-oauth-consent)."]]