我试图连接到Heroku上托管的peerServer。我使用了“云”#39; PeerJs的peerServer提供程序和我的连接有效,但是,我需要自己的ssl服务器。根据我的理解,我的peerServer正常工作。 - > https://asphericpeerjs.herokuapp.com/
我已根据peerjs API文档修改了代码,但是,根据chrome控制台,它仍在调用http://0.peerjs.com/.../ect/ect ...
this.peer = new Peer([], [{ host : 'https://asphericpeerjs.herokuapp.com' }]);
setTimeout(() => {
this.mypeerid = this.peer.id;
}, 3000);
谢谢, 韦斯
答案 0 :(得分:0)
数组不是必需的,这样做:
this.peer = new Peer({ host : 'https://asphericpeerjs.herokuapp.com' });
setTimeout(() => {
this.mypeerid = this.peer.id;
}, 3000);