Here is the snapshot of the lmvquickstart, i got a encoded urn of the translated file.
I used that urn to load the model in html but got a failure
$(document).ready(function () {
var viewerApp;
var options = {
env: 'AutodeskProduction',
accessToken: 'YOUR ACCESS TOKEN'
};
var documentId = 'YOUR BASE 64 ENCODED URN';
$.getJSON( 'http://'+window.location.host+ "/v1/models", function( data ) {
console.log(data);
options.accessToken = data.accessToken;
documentId = data.urn;
// documentId = urn:dXJuOmFkc2sub2JqZWN0czpvcy5vYmplY3Q6Y29udHJvbGxlci9MRUQlMjB2MS5zdGVw
console.log(options.accessToken, documentId);
Autodesk.Viewing.Initializer(options, function onInitialized(){
viewerApp = new Autodesk.A360ViewingApplication('viewer');
viewerApp.registerViewer(viewerApp.k3D, Autodesk.Viewing.Private.GuiViewer3D);
viewerApp.loadDocumentWithItemAndObject(documentId);
});
});
});
It seems like one of the reasons can be, your translated URN has expired, the model was probably uploaded to a Transient bucket, meaning it will expire after 24 hours since the translation was done. I would try using a temporary one for now which will keep your model translation for 30 days.
I'm going to leave a couple of links that can help you out with the start of your development.
https://github.com/jaimerosales/nodejs-forge-viewer-tutorial