You have been limit by zoom, verfy recaptcha and try again,

I am trying to connect to an already scheduled meeting in a zoom account and embed it in a browser. I have finally managed to get through but then I receive the message… You have been limit by zoom, verfy recaptcha and try again,

On the window I get - Joining meeting timeout. Your connection has timed out and you cannot join the meeting. Verify your network connectivity and try again.

Console screenshot

My meeting.js script…

window.addEventListener(‘DOMContentLoaded’, function(event) {
console.log(‘DOM fully loaded and parsed’);
websdkready();
});

function websdkready() {

ZoomMtg.setZoomJSLib(“https://source.zoom.us/1.8.6/lib”, “/av”);
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();

function beginJoin() {
fetch(’/sessions/data/zoom/’)
.then(result => {
return result.text()
})
.then(response => {
console.log(response)
const obj = JSON.parse(response)
ZoomMtg.init({
leaveUrl: obj.leaveUrl,
webEndpoint: “/sessions/welcome/”,
success: function () {
ZoomMtg.join({
meetingNumber: obj.meetingNumber,
userName: obj.userName,
signature: obj.signature,
apiKey: obj.apiKey,
userEmail: obj.userEmail,
passWord: obj.password,
success: function (res) {
console.log(“join meeting success”);
console.log(“get attendeelist”);
ZoomMtg.getAttendeeslist({});
ZoomMtg.getCurrentUser({
success: function (res) {
console.log(“success getCurrentUser”, res.result.currentUser);
},
});
},
error: function (res) {
console.log(res);
},
});
},
error: function (res) {
console.log(res);
},
});
})
.catch(err => {
console.log(err)
})

ZoomMtg.inMeetingServiceListener(‘onUserJoin’, function (data) {
console.log(‘inMeetingServiceListener onUserJoin’, data);
});

  ZoomMtg.inMeetingServiceListener('onUserLeave', function (data) {
    console.log('inMeetingServiceListener onUserLeave', data);
  });

  ZoomMtg.inMeetingServiceListener('onUserIsInWaitingRoom', function (data) {
    console.log('inMeetingServiceListener onUserIsInWaitingRoom', data);
  });

  ZoomMtg.inMeetingServiceListener('onMeetingStatus', function (data) {
    console.log('inMeetingServiceListener onMeetingStatus', data);
  });

};

beginJoin();
};

Any advance would be greatly appreciated

Hey @blairmickie,

Thank you for reaching out to the Zoom Developer Forum. What plan are you on? Using the Web SDK will require a Pro Plan or higher. You can request a free trial here: isv@zoom.us.

Let me know if that helps.

Thanks,
Max

I was trying on both a pro account of a non-profit I am helping as well as my own. Eventually I got it work by clearing out all cookies on every browser on my laptop. I have no idea what actually made it work though.

1 Like

Happy to hear you got it working @blairmickie !

For future reference, if the Web SDK detects multiple failed passcode attempts in a short period of time, it will display the captcha.

Thanks,
Tommy

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.