@saibul @Jaideep_Brar I'm facing the similar issue that after signing in IDP (Azure AD), response is not getting redirected to AEM page with below error in logs. How did you resolve this issue? error logs:24.11.2021 13:40:56.001 *INFO* [qtp457817355-613] org.apache.sling.auth.core.impl.SlingAuthent...
Yes Assets API can be used in App Builder.An example action snippet for folder creation below:const token = getBearerToken(params);apiEndpoint = `${aemEndpoint.value}/api/assets/${params.folderPath}`; const raw = JSON.stringify({ class: 'assetFolder', properties: { 'jcr:t...
Adobe is in the process of re-writing the connector between AEM & workfront and also integrating workfront with IMS. I would suggest you to reach out to your Adobe point of contact to get more details or beta access.
@akatsuki07 You would require a nexus repository to export the bundle into that and then include that nexus repository into your parent pom.xml & use <embed-dependency> to include this bundle.
The use case is that we want to use the same firefly app code base to have multiple variations of components and pages. This app will be deployed to many organizations and a specific variation should be picked up by a particular IMS Organization. The expectation is similar to multi-tenancy (though ...
@crich2784 You can try following the steps mentioned here:https://aem.redquark.org/2018/10/day-15-custom-workflows-in-aem.htmland use the resourceType as sling:resourceType="granite/ui/components/coral/foundation/form/select"
@mkumar Yes this is an expected behavior. Metadata profile do not apply to content fragments as mentioned here:https://experienceleague.adobe.com/docs/experience-manager-65/assets/fragments/content-fragments.html?lang=en#constituent-parts-of-a-content-fragment(look for a caution box)
@PremIB - Yes you would be able to make an ajax call to a servlet at server side but not the Java use-api (I initially understood that you're using javascript use-api). The other option is you can get the richtext using getProperties().get("title", "") in the wcmusepojo extension and then parse it f...