For Workers & Pages, what is the name of the domain?
not applicable
What is the error message?
{ “sessionId”: “7c7080a1b275772c49c5c717a617b85c”, “trackName”: “cbe55145-48e2-4a5c-9bf7-ec3218baff81”, “mid”: “”, “errorCode”: “not_found_track_error”, “errorDescription”: “Track not found on remote peer. Make sure the publisher peer is connected and sending packets for this track” }
What is the issue or error you’re encountering
The demo hosted at calls-examples/echo/index.html at main · cloudflare/calls-examples · GitHub does not work
What are the steps to reproduce the issue?
Downloaded the index.html file and added a log:
console.log(“pullResponse”, pullResponse);
}));
// Let's create a new remoteSession now to pull the tracks.
const remoteSessionId = await createCallsSession();
// The remote session also needs its own PeerConnection.
const remotePeerConnection = await createPeerConnection();
// We're going to modify the remote session and pull these tracks
// by requesting an offer from the Calls API with the tracks we
// want to pull.
const pullResponse = await fetch(
`${API_BASE}/sessions/${remoteSessionId}/tracks/new`,
{
method: "POST",
headers,
body: JSON.stringify({
tracks: tracksToPull,
}),
},
).then((res) => res.json());
Then simply drag the file into the browser, open the console and the error is there.
new development, it works with a VPN to the USA, Argentina and Barcelona but not Madrid, my closest CF edge
can you check by using a turn server
instead of stun server
?
system
Closed
April 6, 2025, 2:00pm
5
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.