Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/opengl/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Json &引用;onlinemeeting不能为null“;使用beta API创建新会议时出错_Json_Microsoft Graph Api_Microsoft Teams - Fatal编程技术网

Json &引用;onlinemeeting不能为null“;使用beta API创建新会议时出错

Json &引用;onlinemeeting不能为null“;使用beta API创建新会议时出错,json,microsoft-graph-api,microsoft-teams,Json,Microsoft Graph Api,Microsoft Teams,我正在尝试创建一个新会议,如下所示: (包括不记名代币-与其他操作配合使用) 我得到这个错误: { "error": { "code": "UnknownError", "message": "{\"message\":\"onlinemeeting cannot be null.\"}", "innerError": { "request-id": "da54bfec-c987-4e02-b4b6-1844801d5f00", "date":

我正在尝试创建一个新会议,如下所示:

(包括不记名代币-与其他操作配合使用)

我得到这个错误:

{
  "error": {
    "code": "UnknownError",
    "message": "{\"message\":\"onlinemeeting cannot be null.\"}",
    "innerError": {
      "request-id": "da54bfec-c987-4e02-b4b6-1844801d5f00",
      "date": "2018-10-18T09:52:25"
    }
  }
}

感谢您的帮助。

有点晚了,但对于其他谷歌用户

有一个错误,它不是startTime,而是StartDateTime,并且缺少EndDateTime

您的json应该如下所示

{
  "startDateTime":"2019-09-09T14:33:30.8546353z",
  "endDateTime":"2019-09-09T15:03:30.8566356z",
  "subject":"Subject of schedule",
  "participants": {
    "organizer": {
      "identity": {
        "user": {
          "id": "my oid"
        }
      }
    }
  }
}

您发布的内容类型是什么?application/json。和邮递员一起测试。你能试试“MeetNow”而不是“MeetNow”吗?让我们知道它能正常工作吗?@Arun MSFT不幸的是,这没有解决问题。
{
  "error": {
    "code": "UnknownError",
    "message": "{\"message\":\"onlinemeeting cannot be null.\"}",
    "innerError": {
      "request-id": "da54bfec-c987-4e02-b4b6-1844801d5f00",
      "date": "2018-10-18T09:52:25"
    }
  }
}
{
  "startDateTime":"2019-09-09T14:33:30.8546353z",
  "endDateTime":"2019-09-09T15:03:30.8566356z",
  "subject":"Subject of schedule",
  "participants": {
    "organizer": {
      "identity": {
        "user": {
          "id": "my oid"
        }
      }
    }
  }
}