-
Notifications
You must be signed in to change notification settings - Fork 412
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can we pass string data(parameter) between two clients? #43
Comments
use a JSON ? And just use DataChannel to send the json |
Is there any DataChannel implementation or sample code or documentation for RTCDataChannel implementation? |
hey, I'm new to this repo. So do I need DataChannel if I just need to send a command(used to control a mini car)? |
WebRTC doesn't provide signaling, so you probably use WebSocket, XMPP or any signaling protocol. You can send datas from those channels without using datachannels. |
Hello, i made a pull request for this: #45 |
you may use websocket and send a Json |
How can we pass string data(parameter) between two clients? Is this achieved by RTCDataChannel?
The text was updated successfully, but these errors were encountered: