在 SEEM Beacon Manager iOS Cordova SDK 中设置 HTTPs 连接
Setup HTTPs connection in SEEM Beacon Manager iOS Cordova SDK
我正在使用 https://github.com/glanzkinder/SEEM-Beacon-Manager-Cordova-SDK。通过 HTTP
不使用 SSL
,一切都运行良好。我需要通过 SLL 保护我的连接,但我不知道如何启用 "SSL"-Connection。
//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);
我正在使用 https://github.com/glanzkinder/SEEM-Beacon-Manager-Cordova-SDK。通过 HTTP
不使用 SSL
,一切都运行良好。我需要通过 SLL 保护我的连接,但我不知道如何启用 "SSL"-Connection。
//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);