如何下载 SVG/SVF 以使用 Autodesk Model Forge API 进行离线查看

How do I download SVG/SVF for offline viewing with Autodesk Model Forge APIs

我能够完成上传 Revit 文件并在查看器中翻译和加载的所有步骤。我现在正在尝试下载翻译后的 SVG/SVF 以供离线查看。我找到了对以下端点的引用并用它进行了测试:

function download(){
var uri = 'https://developer.api.autodesk.com/derivativeservice/v2/derivatives/<<urn>>' ;
var authorizationHeader = 'Bearer <<token>>'

request.get(
    {
        url: uri,    
        headers:
        {
            'Authorization': authorizationHeader,
            'Accept-Encoding': 'gzip, deflate'
        },
    },

    function(error, response, body){ 
        if(!error){
            console.log(body); 
        }else{
            console.log(error);
        }
    });
}

API returns:
{"diagnostic":"Derivative api only supports adsk.viewing & adsk.objects urn"}

骨灰盒应该是 url-encoded,而不是 base64 编码。

如果您想获取所有需要的文件以供离线查看,有几个步骤。首先检查 downloadBubble method (node.js) in extract project:

this.downloadBubble =function (urn, outPath) {
    var self =this ;
    self._outPath =outPath ;
    return (new Promise (function (fulfill, reject) {
        self._progress.msg ='Downloading manifest' ;
        self.getManifest (urn)
            .then (function (bubble) {
                //utils.writeFile (outPath + 'bubble.json', bubble) ;
                self._progress.msg ='Listing all derivative files' ;
                self.listAllDerivativeFiles (bubble.body, function (error, result) {
                    self._progress._filesToFetch =result.list.length ;
                    console.log ('Number of files to fetch:', self._progress._filesToFetch) ;
                    self._progress._estimatedSize =0 | (result.totalSize / (1024 * 1024)) ;
                    console.log ('Estimated download size:', self._progress._estimatedSize, 'MB') ;

                    //self.fixFlatBubbles (result) ;
                    //self.fixFusionBubbles (result) ;

                    self._progress.msg ='Downloading derivative files' ;
                    self.downloadAllDerivativeFiles (result.list, self._outPath, function (failed, succeeded) {
                        //if ( ++self._done == 1 /*2*/ )
                        //  return ;
                        self.failed =failed ;
                        self.succeeded =succeeded ;
                        fulfill (self) ;
                    }) ;
                }) ;
            })
            .catch (function (err) {
                console.error ('Error:', err.message) ;
                self._errors.push (err.message) ;
                reject (self) ;
            })
        ;
    })) ;
} ;

https://extract.autodesk.io

现场测试