Web SDK 1.9.9 - View options missing on all platforms

Description
Upgrading to Zoom WEB SDK 1.9.9 using CDN. I cant see Views functionality on all browsers.

Browser Console Error

Which Web Meeting SDK version?
1.9.9

To Reproduce(If applicable)
Our code is almost Identical to the Sample Web SDK you provide.
We run the server locally using node-static and landing on meeting.html directly

var static = require('node-static');
var fileServer = new static.Server('', {
  // headers: {
  //   'Origin-Trial': 'XXX'
  // }
})

require('http').createServer(function(request, response) {
  request.addListener('end', function() {
    // if (request.url.includes('meeting.html')) {
    //   response.setHeader('Cross-Origin-Embedder-Policy', 'require-corp')
    //   response.setHeader('Cross-Origin-Opener-Policy', 'same-origin')
    // }
    // else {
    //   response.setHeader('Cross-Origin-Embedder-Policy', 'unsafe-none')
    //   response.setHeader('Cross-Origin-Opener-Policy', 'unsafe-none')
    // }
    fileServer.serve(request, response)
  }).resume();
}).listen(process.env.PORT || 9999);

Hi @shimrit_folloze ,

Happy to look into this for you. Can you please clarify that it was working on the previous version you were using? Which version was that?

Thanks!
Gianni

Hi Gianni,

We are currently on version 1.9.0.
we upgraded to 1.9.0 version due to the support of gallery view. so it was working at some point and now It is also disabled on that version as well (on all browsers).
I am trying to upgrade to 1.9.9 to get this functionality back.

Thanks,

Shimrit.

Okay @shimrit_folloze ,

Thank you for these additional details and console errors. Can you please provide a screenshot of what you’re seeing when you try to access Views?

Gianni

There is no “View” button at all.

Hey @shimrit_folloze,

Thanks for following up on this. When you run the following command in the console on your Heroku server - what does it return?

typeof SharedArrayBuffer ==='function'

Thanks,
Max

Hi Max,

I’ve tested and typeof SharedArrayBuffer ==='function' is returning true.
From what I was explained the issue is due to the fact we host the zoom inside an iframe.

We will try moving to 2.0 and embedding zoom in our app and hopefully it will resolve the issue.

Hey @shimrit_folloze,

That’s spot on, thanks for reiterating that for me. With 2.0.1 the Component View will offer a variety of improvements. That coupled with removing the implementation from an iframe should net some really great results.

Let us know if you run into any issues.

Thanks,
Max

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