我有一个运行在https上的回送服务器。 通过以下方式配置:
server.listen(app.get('port'), function() {
var baseUrl = (httpOnly ? 'http://' : 'https://') + app.get('host') + ':' + app.get('port');
app.emit('started', baseUrl);
console.log('LoopBack server listening @ %s%s', baseUrl, '/');
if (app.get('loopback-component-explorer')) {
var explorerPath = app.get('loopback-component-explorer').mountPath;
console.log('Browse your REST API at %s%s', baseUrl, explorerPath);
}});
并且运行正常。
使用CLI生成SDK时,一切运行良好,但是客户端正在访问我的API服务器的HTTP版本,而不是HTTPS版本。
有人有可以帮助我的想法吗?
在此先感谢您的帮助。