回调 API 到 URL

Callback API to URL

我刚开始使用 APIs。文档说他们将 POST XML 信息放在 URL 中。 我创建了一个 google 站点以便 API 发送此信息。 google 站点是否能够接收此 XML POST? 我如何从站点检索此信息?

谢谢

function doPost(e) {
  const content = e.postData.getDataAsString();
  console.log(content);
  const xml = XmlService.parse(content);
  const root = xml.getRootElement();
  /* ... */
}

参考文献:

Web Apps

Deploy a script as a web app

XML Service