I´ve downloaded the Forge Design Automation sample from the following link:
https://learnforge.autodesk.io/#/tutorials/modifymodels
But the downloable code example is not working fine. When any async method who involves the DesignAutomation API is called I get -> Value cannot be null. (Parameter ‘ForgeConfiguration.ClientId’). So, I would like to know how it works and how I can set the ClientId in the ForgeConfiguration class or else if I making something else wrong. I attach a fragment of code where I get the error.
[HttpGet] [Route("api/forge/designautomation/engines")] public async Task<List<string>> GetAvailableEngines() { List<string> allEngines = new List<string>(); try { dynamic oauth = await OAuthController.GetInternalAsync(); // define Engines API string paginationToken = null; while (true) { Page<string> engines = await _designAutomation.GetEnginesAsync(paginationToken); allEngines.AddRange(engines.Data); if (engines.PaginationToken == null) break; paginationToken = engines.PaginationToken; } allEngines.Sort(); } catch (Exception error) { throw error; } return allEngines; // return list of engines }
And the call of the method:
function prepareLists() { list('engines', 'api/forge/designautomation/engines'); } function list(control, endpoint) { $('#' + control).find('option').remove().end(); jQuery.ajax({ url: endpoint, success: function (list) { if (list.length === 0) $('#' + control).append($('<option>', { disabled: true, text: 'Nothing found' })); else list.forEach(function (item) { $('#' + control).append($('<option>', { value: item, text: item })); }) } });
}
Advertisement
Answer
Did you forget to set the Forge App Keys in the Environment Variables of your project, check the page at https://learnforge.autodesk.io/#/environment/setup/netcore_da