我正在使用 https://github.com/glanzkinder/SEEM-Beacon-Manager-Cordova-SDK .不通过 HTTP
使用 SSL
一切正常。我需要通过 SLL 保护我的连接,但我不知道如何启用“SSL”连接。
//SEEM API Configuration
SEEM.setApiPort(443);
SEEM.setApiUrl('my.example-domain.com');
SEEM.setAutoUuidFetch(true);
//try listen beacon
SEEM.startListeningToBeaconRegion(function(result) {
console.log("Start Listening to Beacon Region successful: ");
console.log("UUID: " + result[0]);
console.log("major: " + result[1]);
console.log("minor: " + result[2]);
}, function(result) {
console.log("Start Listening to Beacon Region failed:");
console.log(result);
}, 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX', null, null, true);
这是我的错误消息:
Start Listening to Beacon Region failed SSL-Connection error.
有人知道如何启用 SSL 吗?
根据Documentation ,你需要设置SEEM.setApiSslEnabled(true);
。试试这个配置:
//SEEM API Configuration
SEEM.setApiPort(443);
SEEM.setApiSslEnabled(true);
SEEM.setApiUrl('my.example-domain.com');
SEEM.setAutoUuidFetch(true);
关于javascript - 在 SEEM Beacon Manager iOS Cordova SDK 中设置 HTTPs 连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28435612/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |