次の方法で共有


モジュール リソースの一覧表示

名前空間: microsoft.graph

モジュールに関連付けられている educationModuleResource オブジェクトをすべて取得 します。 この操作を実行できるのは、アプリケーションのアクセス許可を持つ教師、学生、アプリケーションだけです。

この API は、次の国内クラウド展開で使用できます。

グローバル サービス 米国政府機関 L4 米国政府機関 L5 (DOD) 21Vianet が運営する中国

アクセス許可

この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。 アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、「アクセス許可のリファレンス」を参照してください。

アクセス許可の種類 最小特権アクセス許可 より高い特権のアクセス許可
委任 (職場または学校のアカウント) EduCurricula.Read EduCurricula.ReadWrite
委任 (個人用 Microsoft アカウント) サポートされていません。 サポートされていません。
アプリケーション EduCurricula.Read.All EduCurricula.ReadWrite.All

HTTP 要求

GET /education/classes/{id}/modules/{id}/resources

オプションのクエリ パラメーター

このメソッドは、応答のカスタマイズに役立つ $expand OData クエリ パラメーターをサポートします。 一般的な情報については、「OData クエリ パラメーター」を参照してください。

要求ヘッダー

ヘッダー
Authorization ベアラー {token}。 必須です。 認証と認可についての詳細をご覧ください。

要求本文

このメソッドには、要求本文を指定しません。

応答

成功した場合、このメソッドは 200 OK 応答コードと、応答本文の educationModuleResource オブジェクトのコレクションを返します。

要求

次の例は要求を示しています。

GET https://graph.microsoft.com/v1.0/education/classes/37d99af7-cfc5-4e3b-8566-f7d40e4a2070/modules/ba8e4215-4fb2-4dba-abe7-a8f2585177d3/resources

応答

次の例は応答を示しています。

注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。

HTTP/1.1 200 OK
Content-type: application/json

{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#education/classes('37d99af7-cfc5-4e3b-8566-f7d40e4a2070')/modules('ba8e4215-4fb2-4dba-abe7-a8f2585177d3')/resources",
    "@microsoft.graph.tips": "Use $select to choose only the properties your app needs, as this can lead to performance improvements. For example: GET education/classes('<guid>')/modules('<guid>')/resources?$select=resource",
    "value": [
        {
            "id": "6257a14b-4e09-4af0-b013-cbb468e64f8f",
            "resource": {
                "@odata.type": "#microsoft.graph.educationLinkResource",
                "displayName": "Where the Wonders of Learning Never Cease | Wonderopolis",
                "createdDateTime": "2023-06-23T14:39:27.2137354Z",
                "lastModifiedDateTime": "2023-06-23T14:39:27.213885Z",
                "link": "https://wonderopolis.org/",
                "createdBy": {
                    "application": null,
                    "device": null,
                    "user": {
                        "id": "cb1a4af3-0aba-4679-aa12-9f99bab0b61a",
                        "displayName": null
                    }
                },
                "lastModifiedBy": {
                    "application": null,
                    "device": null,
                    "user": {
                        "id": "cb1a4af3-0aba-4679-aa12-9f99bab0b61a",
                        "displayName": null
                    }
                }
            }
        },
        {
            "id": "445a73e6-a142-4681-87ff-beeff54cdce7",
            "resource": {
                "@odata.type": "#microsoft.graph.educationLinkResource",
                "displayName": "Where the Wonders of Learning Never Cease | Wonderopolis",
                "createdDateTime": "2023-06-23T14:40:41.0020471Z",
                "lastModifiedDateTime": "2023-06-23T14:40:41.002085Z",
                "link": "https://wonderopolis.org/",
                "createdBy": {
                    "application": null,
                    "device": null,
                    "user": {
                        "id": "cb1a4af3-0aba-4679-aa12-9f99bab0b61a",
                        "displayName": null
                    }
                },
                "lastModifiedBy": {
                    "application": null,
                    "device": null,
                    "user": {
                        "id": "cb1a4af3-0aba-4679-aa12-9f99bab0b61a",
                        "displayName": null
                    }
                }
            }
        },
        {
            "id": "a920a29d-1f5c-48d6-b647-85b91dc1dbaf",
            "resource": {
                "@odata.type": "#microsoft.graph.educationLinkResource",
                "displayName": "2023-06-24T17_13_22_819Z",
                "createdDateTime": "2023-06-23T17:49:09.475663Z",
                "lastModifiedDateTime": "2023-06-23T17:49:09.4756658Z",
                "link": "https://www.bing.com",
                "createdBy": {
                    "application": null,
                    "device": null,
                    "user": {
                        "id": "cb1a4af3-0aba-4679-aa12-9f99bab0b61a",
                        "displayName": null
                    }
                },
                "lastModifiedBy": {
                    "application": null,
                    "device": null,
                    "user": {
                        "id": "cb1a4af3-0aba-4679-aa12-9f99bab0b61a",
                        "displayName": null
                    }
                }
            }
        }
    ]
}