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.
JavaScript
x
29
29
1
[HttpGet]
2
[Route("api/forge/designautomation/engines")]
3
public async Task<List<string>> GetAvailableEngines()
4
{
5
6
List<string> allEngines = new List<string>();
7
try
8
{
9
dynamic oauth = await OAuthController.GetInternalAsync();
10
11
// define Engines API
12
string paginationToken = null;
13
while (true)
14
{
15
Page<string> engines = await _designAutomation.GetEnginesAsync(paginationToken);
16
allEngines.AddRange(engines.Data);
17
if (engines.PaginationToken == null)
18
break;
19
paginationToken = engines.PaginationToken;
20
}
21
allEngines.Sort();
22
}
23
catch (Exception error) {
24
throw error;
25
}
26
27
return allEngines; // return list of engines
28
}
29
And the call of the method:
JavaScript
1
17
17
1
function prepareLists() {
2
3
list('engines', 'api/forge/designautomation/engines');
4
5
}
6
function list(control, endpoint) {
7
$('#' + control).find('option').remove().end();
8
jQuery.ajax({
9
url: endpoint,
10
success: function (list) {
11
if (list.length === 0)
12
$('#' + control).append($('<option>', { disabled: true, text: 'Nothing found' }));
13
else
14
list.forEach(function (item) { $('#' + control).append($('<option>', { value: item, text: item })); })
15
}
16
});
17
}
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