BTW saw this note in the auth section of the product documentation https://www.adobe.io/app-builder/docs/guides/security/ The validator action enabled by require-adobe-auth: true annotation requires the provided IMS access token to have the read_organizations scope. While it is always the case for u...
good pointsyou could use firefly and put in an Alarm (cron) job that would refresh the cached dataset independent of the users interactions. The user would never hit the 2min refresh but it would still be there. Not trying to under play the need for fast preformant API's of course. It would be ide...
Well that is one of the reasons we built firefly. To help provide easy extention points for our products. I hope it helps with your use case. Let us know here in the forum if you need more help.
Your decision point, I think, is Event or Alarm based execution. Alarms are like Cron jobs(timer execution)Your deployed Firefly Actions would run in our Adobe cloud, so they should be able to access any publicly available endpoint. Firefly Actions are written in nodejs which has a ton of librarys f...
There are no outbound restrictions that I know of. The only limitation I can think of there would be the max Action run time. Serverless Actions (functions) are not long running by design so each Action by default would need to complete in under 1 minute before it would be timed out. This is conf...
There will always be a small additional call time added when using Firefly actions to access the AEP query service. It is another layer between the client and the data. That being said it should be a small addition when compared to calling query service directly.It depends on your use case but the...
I added a bug to the engineering project for the aio app plugin in github.https://github.com/adobe/aio-cli-plugin-app/issues/449If you would like to follow the issue or add some notes please feel free to.
There is a bug. I hit this same issue on widows a couple of weeks back. I had to move my project to C drive to resolve the issue.I will check and see what the bug number is so you can follow its resolution.
Here is a page with the standard list of limitations around Actions. As you can see 1mb is the max result you can return so you have some limitations about how big your data can grow before you need to do Paging of the result set. If the data you are retrieving from AEP does not to be real-time I wo...