0

我目前正在考虑从使用 Groups API 切换到 Education API。

我正在使用 Graph Explorer 测试一些端点,并且在一些响应中不断看到以下内容(我已经更改了敏感值):


{
  "@odata.context":"https://graph.microsoft.com/v1.0/$metadata#Collection(microsoft.graph.educationClass)",
  "value":[{
    "id":"ID",
    "description":null,
    "displayName":"NAME",
    "mailNickname":"Section_BLAH_BLAH",
    "externalName":"NAME",
    "externalId":"BLAH_BLAH",
    "externalSource":"sis"
    {
      "error": {
        "code": "InternalServerError",
        "message": "String was not recognized as a valid DateTime.",
        "innerError": {
          "request-id": "XXXXX-b7c9-4c83-94ed-XXXXX",
          "date": "2019-12-04T12:36:57"
        }

请求的端点是https://graph.microsoft.com/v1.0/education/schools/SCHOOL_ID/classes,我希望它返回学校的班级列表。

数据是通过 SDS 添加的,所以我不确定这是否是问题,或者添加类数据时出现问题

4

1 回答 1

0

从错误来看,似乎日期时间属性的格式不正确。像 Newtonsoft 和 Json.net 这样的 JSON 序列化器开箱即用地处理这个问题。但是,如果您形成自己的 JSON,则必须确保日期为 ISO 8601 格式,即yyyy-MM-ddTHH:mm:ssZ.

在 C# 中,这是通过myDate.ToString("o");

于 2020-02-27T22:10:32.683 回答