I am trying to embed a seamless document onto a page that is served over HTTPS. However the Scribd javascript API is requesting resources over HTTP, which the browser blocks, e.g. in the Chrome console I see something like:
Is there a way to force the library to use HTTPS? I know when using the iframe method, it uses HTTPS automatically. However I would prefer to use seamless. Here is a snippet of how I instantiate the embedded doc:
var scribdDoc = scribd.Document.getDoc(ipaperId, ipaperAccessKey);
scribdDoc.addParam('jsapi_version', 2);
scribdDoc.addParam('width', 900);
scribdDoc.seamless('my_div');
Thanks,
Mike