Chrome 应用程序 chrome.networking.onc API 不适用于信息亭应用程序

Chrome Apps chrome.networking.onc API not available for kiosk apps

背景

我有一个 Chrome Kiosk 应用程序,我想在其中使用 chrome.networking.onc API 让我的用户更改 WiFi 网络。

我的问题

在自助服务终端会话中 运行 时,在应用程序后台脚本或应用程序 window 中都没有 chrome.networking.onc API 可供应用程序使用。

我试过的

根据 chrome.networking.onc 文档,它应该在自助服务终端模式下可供应用程序使用。

我已将 networking.onc 添加到我的应用程序清单中的 permissions

https://developer.chrome.com/apps/networking_onc

https://developer.chrome.com/apps/declare_permissions

使用 G Suite Chrome 设备管理策略将自助服务终端应用强制安装到用户 Chrome 图书中。

代码示例

app/manifest.json

{
  "manifest_version": 2,
  "name": "Kiosk networking.onc",
  "version": "1.0",
  "permissions": ["networking.onc"],
  "kiosk_enabled": true,
  "kiosk_only": true,
  "app": {
    "background": {
      "scripts": ["background.js"]
    }
  }
}

app/background.js

chrome.app.runtime.onLaunched.addListener(function(launchData) {
  // send a list of available chrome APIs to the app window to be displayed
  chrome.app.window.create(`window/main.html?chrome=${Object.keys(chrome).join(",")}&kiosk=${launchData.isKioskSession}`);
});

app/window/main.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Chrome app</title>
  </head>
  <body>
    <p>
      <h1>Background <code>chrome</code> object properties</h1>
      <div id="background"></div>
    </p>

    <p>
      <h1>App window <code>chrome</code> object properties</h1>
      <div id="window"></div>
    </p>

    <button id="exit">window.close()</button>
    <script src="main.js"></script>
  </body>
</html>

app/window/main.js

// display the available Chrome APIs in the background script
document.getElementById("background").innerText = window.location.search;

// display all the available Chrome APIs (accessible from the app window).
document.getElementById("window").innerText = Object.keys(chrome).join(",");

document.getElementById("exit").onclick = () => window.close()

在信息​​亭会话中输出(Chrome OS 77.0.3865.105)

在下图中,在可用的 API 中找不到 networking,如果我尝试访问 networking.onc,我会收到错误消息:Uncaught TypeError: Cannot read property 'onc' of undefined

这个问题似乎是由 Chrome OS.

中的错误引起的

我已在此处的 Chromium 问题跟踪器中报告了该问题:https://bugs.chromium.org/p/chromium/issues/detail?id=1012629