Hello Community! I wanted to see if anyone else has experienced this error. We pull a ton of data out of salesforce using the salesforce input tool. I currently set up workflows that pull data out of each object that we use and then create YXDB files that can be used in downstream workflows. This avoids having to use the SFDC input tool as it typically causes a delay each time you access it or open up a workflow with it in the canvas.
To make it easier I like to use the List Runner macro to run each workflow individually while being able to easily see which ones fail and might need to be re-run. The problem is that when I put this on the server I keep getting a "{'error': 'invalid_grant', 'error_description': 'authentication failure'}" error. I am able to run the workflows individually on the server just fine and they all have the "PythonAllowHideEncryption" registry fix. Has anyone else encountered this issue?
Does anyone know if it would be better to do the following:
1. Create a python script that will run the workflows (like the command line tool) and have the server run them.
2. Use the command line tool and batch them through.
3. Use the server API and have the workflows stored on the server and tell the API to run them.
Are there any other good methods of running many workflows at once and being able to easily see which ones fail/succeed on the server?