Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

dr_venture
dr_venture
Online

Badges

Badges
16

Accepted Solutions

Accepted Solutions
12

Likes Received

Likes Received
33

Posts

Posts
76

Discussions

Discussions
4

Questions

Questions
72

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by dr_venture
Customize the badges you want to showcase on your profile
Re: 401: request is invalid, reason: failed authorization. Please verify your token and organization id - App Builder 05-10-2021
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 user tokens used in SPAs, the JWT access tokens used in headless applicationss may not have this scope. This will be the case if it is generated to integrate with the following services:Adobe Analytics...

Views

402

Likes

0

Replies

2
Re: 401: request is invalid, reason: failed authorization. Please verify your token and organization id - App Builder 05-10-2021
Would you mind posting or sending me the code for that action so we can look at it closer?

Views

403

Like

1

Replies

3
Re: Adobe Experience Platform Query Service - Adobe Experience Platform 19-08-2021
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 ideal if this caching was not needed at all. I understand the fustration. I don't work in AEP engineering or product management so I dont really know the answer to your question about correct use. I would ...

Views

439

Like

1

Replies

0
Re: SFTP from project firefly worker - App Builder 18-08-2021
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.

Views

493

Likes

0

Replies

0
Re: SFTP from project firefly worker - App Builder 17-08-2021
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 for calling SFTP endpoints. On the AEM side I would imagine your going to use the Assets API to get and put files. There are also ways to hook into AEM Asset events. I have not done it yet but I know i...

Views

508

Likes

0

Replies

2
Re: SFTP from project firefly worker - App Builder 17-08-2021
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 configurable up to 1,800,000ms per the documentation but 1 min is the default and complies with general serverless principles.https://www.adobe.io/apis/experienceplatform/runtime/docs.html#!adobedocs/adobeio...

Views

513

Like

1

Replies

4
Re: Adobe Experience Platform Query Service - Adobe Experience Platform 06-08-2021
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 value added by using Firefly Actions is the ability to use the State and File storage layer to do caching of data. Please see this thread on caching of datahttps://experienceleaguecommunities.adobe.com...

Views

489

Like

1

Replies

0
Re: @parcel/core - App Builder 02-08-2021
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.

Views

694

Likes

0

Replies

0
Re: @parcel/core - App Builder 02-08-2021
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.

Views

695

Like

1

Replies

1
Re: Action result max size and good practice - App Builder 19-07-2021
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 would recommend catching the data then giving the users the same result setup until a time period has passed where the data would be too old to be considered useful in the app. For example, if your app ...

Views

315

Likes

3

Replies

0