我正在为chromebook编写应用程序,必须与特定的USB设备通信。该设备存在于找到的设备列表中,该列表来自callback:
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。查找设备和chrome.usb。requestAccess,但结果是相同的。同时,我的nexus 7设备通过usb成功识别。任何想法为什么可以或猜测如何使我的usb设备变得可访问?我只在宏碁Chromebook c7 (Chrome OS v.44)上遇到过这个问题,在Mac上我没有这样的问题。
打开chrome://system并展开"syslog"部分。您将发现来自"permission_broker"的一系列消息,用于您尝试打开的每个设备以及导致其拒绝访问的规则。
最常见的原因是"DenyClaimedUsbDeviceRule",它拒绝访问另一个应用程序或内核驱动程序声明的设备。出于安全原因,在这种情况下拒绝访问。Chrome操作系统不希望Chrome应用程序能够覆盖内核对其支持的设备通常强制执行的任何策略。你应该使用更高级的API(比如chrome)。用于存储设备或导航器的文件系统。