我实际上已经遵循了这个WebRTC代码框(https://codelabs.developers.google.com/codelabs/webrtc-web/#7),但在需要连接到ICE服务器时卡住了。
基本代码:
main.js
var pcConfig = {
'iceServers': [{
'url': 'stun:stun.l.google.com:19302'
}
[...]
if (location.hostname !== 'localhost') {
requestTurn(
'https://computeengineondemand.appspot.com/turn?username=41784574&key=4080218913');}
通常我会得到错误:“ICE失败”,或者 “阻止跨源请求:同源策略禁止在https://computeengineondemand.appspot.com/turn?username=41784574&key=4080218913读取远程资源。 (原因:CORS标题'Access-Control-Allow-Origin'缺失)。“
根据后者,我启用了 “A2enmod headers”并将其设置为apache.conf“Header始终设置Access-Control-Allow-Origin" *" “
问题仍然存在。我的STUN服务器是“' url':&st; stun:stun.l.google.com:19302' “ 据我所知,STUN应该有80%的时间工作。但这永远不会奏效。因此,即使TURNserver不再工作,它有时也应该与STUN连接?