Connection Issues #134
jacquestrdx123
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi
I have been trying to get this library to work for a while now.
I am able to get it working using multiple devices on the same LAN.
I am hosting the socket server myself and its using https,
The socket connects and when on the same LAN video calls work.
I just cannot get the STUN/TURN to work.
I have tried multiple things, I am unforunately not clever enough to fork this project and get more verbose info
I have set up a data object
peerOptions: {
config: {
iceServers: [
{
urls: 'stun::3478',
username: "user",
credential: "pass"
},
{
urls: 'turn::3478',
username: "user",
credential: "pass"
},
]
},
<vue-webrtc ref="webrtc"
width="100%"
:roomId="roomId"
:socket-u-r-l="'mysocketserver:3000'"
:enableLogs="true"
v-bind:peer-options="peerOptions"
v-on:joined-room="logEvent"
v-on:left-room="logEvent"
v-on:opened-room="logEvent"
v-on:share-started="logEvent"
v-on:share-stopped="logEvent"
@error="onError" />
Beta Was this translation helpful? Give feedback.
All reactions