无法连接到chromebook上的USB:访问设备的权限被拒绝

时间:2015-09-01 15:14:35

标签: google-chrome-os chromebook chromium-os

我正在为必须与特定USB设备通信的chromebook编写应用程序。该设备存在于找到的设备列表中,来自回调:

   var VENDOR_ID = 5824, PRODUCT_ID = 1159;

   document.getElementById("request-permission").addEventListener('click', function() {
    chrome.permissions.request({
            permissions: [{
                'usbDevices': [{
                    'vendorId': VENDOR_ID,
                    "productId": PRODUCT_ID
                }]
            }]
        },
        function(result) {
            if (result) {
                console.log('App was granted the "usbDevices" permission.');
                getDevices();
            }
        }
    });
});


function getDevices() {
    chrome.usb.getDevices({
        vendorId: VENDOR_ID,
        productId: PRODUCT_ID
    }, function(devices) {
        if (chrome.runtime.lastError !== undefined) {
            console.warn('chrome.usb.getDevices error: ' + chrome.runtime.lastError.message);
            return;
        }
        if (devices) {
            if (devices.length > 0) {
                for (var device of devices)
                    openUsbDevice(device);
            }
        }
    }); 
}

所以我可以成功看到我的设备,但是当我试图打开它时,它失败了:

chrome.usb.openDevice(device, function(handle) {
        if (chrome.runtime.lastError != undefined) {
          console.log('Failed to open device: '+chrome.runtime.lastError.message);
        } else {
          populateDeviceInfo(handle, function () {
              chrome.usb.closeDevice(handle);
            });
        }
      });

我在控制台收到错误:无法打开设备:访问设备的权限被拒绝

我已经在manifest.js中声明了所有需要的usb权限:

  "permissions" : [
    "usb"
  ],
  "optional_permissions" : [{
    "usbDevices" : [
        {
          "productId" : 1159,
          "vendorId" : 5824
        }
      ]
  }],

我还尝试了其他api函数,例如 chrome.usb.findDevices chrome.usb.requestAccess ,但结果是一样的。同时我的nexus 7设备,例如通过usb成功识别。 任何想法为什么可以或猜测如何使我的USB设备变得可访问? 我只是在Acer Chromebook c7(Chrome OS v.44)上面对此问题而在Mac上我没有这样的问题。

1 个答案:

答案 0 :(得分:2)

打开chrome://系统并展开" syslog"部分。你会发现来自" permission_broker"的一系列消息。对于您尝试打​​开的每个设备以及导致其拒绝访问的规则。

最常见的原因是" DenyClaimedUsbDeviceRule"拒绝访问其他应用程序或内核驱动程序声明的设备。出于安全原因,在这种情况下拒绝访问。 Chrome操作系统不希望Chrome应用程序能够覆盖内核通常为其支持的设备强制执行的任何策略。您应该使用更高级别的API(例如用于存储设备的chrome.fileSystem或用于网络摄像头和音频适配器的navigator.getUserMedia)。