0

我安装了 AppRTC GAE 应用程序的克隆,但来自 TURN 服务器的响应存在 CORS 问题。

我已经在 VPS 上安装了自己的 TURN 服务器,但是 CORS 请求的问题仍然存在,我不知道如何解决它。

https://github.com/webrtc/apprtc

我试图修改 python 请求以添加必要的标头,但没有运气。

我还发现了有关 CORS 支持的资源 https://cloud.google.com/appengine/docs/go/config/appconfig

但仍然没有运气。

我得到的错误是 XMLHttpRequest cannot load https://computeengineondemand.appspot.com/turn?username=910605201&key=4080218913. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://hubert-rtc.appspot.com' is therefore not allowed access.

有什么建议么?

4

1 回答 1

0

AppRtc 已故意禁用 CORS 以获取 turnServer 地址。他们希望开发人员拥有自己的 TurnServer。

https://github.com/webrtc/apprtc/issues/175

于 2015-07-14T23:32:29.300 回答