在使用Autodesk Model Derivative API时,One possible reason为未设置RetrieveAllData参数。将其设置为True即可检索出所有数据。以下是示例代码:
import ForgeModelDerivativeApi from forgeapis
def get_manifest(api_client, urn):
api_instance = ForgeModelDerivativeApi(api_client)
include_all_data = True
return api_instance.get_manifest(urn, include_all_data=include_all_data)
在上述代码中,include_all_data参数被设置为True以确保检索到所有数据。