Skip to content
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

Signalling server doesn't work with app. #14

Open
dhawaldev opened this issue May 17, 2018 · 2 comments
Open

Signalling server doesn't work with app. #14

dhawaldev opened this issue May 17, 2018 · 2 comments

Comments

@dhawaldev
Copy link

As mentioned in your documentation for react-native-webrtc (shown below).

oney

I have created a new server on heroku and used it as a signaling server for my app. This works fine for browser to browser, but doesn't connect to the app.

@awesomesince96
Copy link

I am also stuck at the same problem.. did you find the solution ?

@delpes
Copy link

delpes commented Jul 26, 2018

This is probably caused by port 4443:

When doing
socket = io.connect('https://example.com', {transports: ['websocket']});
socket.io tries to connect to port 443.

After changing the line to:
socket = io.connect('https://example.com:4443', {transports: ['websocket']});
to connection was successfully established

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants