When I am loading cesium map into my application, it is loading properly but in console logs showing following errors.
"include.preload.js:393 Blocked script execution in 'about:blank' because the document's frame is sandboxed and the 'allow-scripts' permission is not set."
I remember this issue is resolved already in one of the latest version. I am using 1.22.1V.
Try adding the "allow-scripts" flag in the viewer
Should look something like this for example
viewer.infoBox.frame.sandbox = "allow-same-origin allow-top-navigation allow-pointer-lock allow-popups allow-forms allow-scripts"
This code injects JavaScript into every single page you visit, which I assume also includes the sandboxed iframe used by the InfoBox. Because it’s sandboxed, it is not allowed to execute scripts.
In any event, you can ignore this error, which doesn’t affect Cesium’s operation.
The HTTPS problem is indeed a bug on the website which is a separate issue.