Can we use the Google Stun Server (default for nodejs webrtc.io-client) for commercial applications?

https://npmjs.org/package/webrtc.io-client says:

Using

rtc.createStream({"video": true, "audio":true}, function(stream){
  // get local stream for manipulation
}
rtc.connect('ws://yourserveraddress:8001', optionalRoom);
//

then callback group is available

You can install the STUN server by calling rtc.SERVER = "STUN stun.l.google.com:19302" and install your server. The default STUN server used by the library is one of Google.

Can I use the same STUN server for my commercial application?

+5
source share
1 answer

Can you?

Yes.

Do you have to?

No.

Using any third party without agreement is dangerous and may leave you in the future.

Some story:

Google / API, -.

+9

All Articles