首页 > 解决方案 > Web蓝牙API:Origin不允许访问服务

问题描述

我正在使用网络蓝牙 API 来连接 BLE 设备。它在https://localhost上完美运行。但是,当我在也位于 https 上的实时服务器上尝试它时,或者当我在http://locahost上尝试它时,它会通过我这个错误“Origin is not allowed to access the service. Tip: Add the service UUID to 'optionalServices ' 在 requestDevice() 选项中。”。代码如下。我已经添加了可选服务。

      scanDevices () {
            if(navigator.bluetooth) {
                navigator.bluetooth.requestDevice({
                    acceptAllDevices: true,
                    optionalService: ['0000fee0-0000-1000-8000-00805f9b34fb', '0000fee1-0000-1000-8000-00805f9b34fb']
                })
                .then(device => {
                    // save the device returned so you can disconnect later:
                    this.device = device;
                    this.device.addEventListener('gattserverdisconnected', this.onDisconnected);
                    // connect to the device once you find it:
                    return this.connect();
                })
                .then((server) => {
                    this.server = server;
                    return server;
                })
                .catch(function(error) {
                    // catch any errors:
                    console.error('Connection failed!', error);
                });
            } else {
                this.errorMessage = 'Your browser does not support web bluetooth API.';
            }

        },
        connect(){
            let connection = this.device.gatt.connect();
            console.log('Connected', connection);
            return connection;
        },
        readData (){
            this.isLoader = true;
            console.log('get the primary service:');
            console.log(this.server);
            this.server.getPrimaryService(this.parsedService)
            .then((service) => {
                console.log('get the  characteristic:');
                return service.getCharacteristic(this.parsedCharacteristic);
            })
            .then(characteristic => {
                return characteristic.readValue();
            })
            .then(value => {
                console.log(value);
                this.isLoader = false;
                let decoder = new TextDecoder('utf-8');
                console.log(decoder.decode(value));
            })
            .catch(error => {
                this.isLoader = false;
                this.errorMessage = error.message;
            });
        },

标签: javascriptbluetooth-lowenergyweb-bluetooth

解决方案


似乎它缺少一个“s” optionalService。应该是optionalServices根据https://webbluetoothcg.github.io/web-bluetooth/#dom-requestdeviceoptions-optionalservices


推荐阅读