Error with embed PDF
I have seen many similar posts, but even with much trouble shooting I can't seem to get the PDF embed code to work. Have created multiple API keys, but won't work.
Here is the code I'm using
<html>
<head>
<title>Your title</title>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<script src="http://documentcloud.adobe.com/view-sdk/main.js"></script>
</head>
<body>
<div id="adobe-dc-view"></div>
<script type="text/javascript">
document.addEventListener("adobe_dc_view_sdk.ready", function()
{
var adobeDCView = new AdobeDC.View({clientId: "99546d4b3c424396afeb3522fdd20b62", divId: "adobe-dc-view"});
adobeDCView.previewFile(
{
content: {location: {url: "(http://pccirls.weebly.com/uploads/1/3/5/4/135443943/pdf_test.pdf"}},
metaData: {fileName: " pdf_test.pdf "}
});
});
</script>
</body>
</html>



