Download file from Autodesk Forge 3D viewer
问题 How do I download a file from the 3D viewer in Autodesk Forge. I am using 2 legged authorization and I am able to upload files to the bucket, but I am not sure how to download the file from them in the 3D viewer. The code below downloads files but there is nothing contained inside them: var element = document.createElement('a'); element.setAttribute('href', '#'); element.setAttribute('download', node.text); element.style.display = 'none'; document.body.appendChild(element); element.click();