Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
AEM Cloud Service - Get Adobe IMS JWT and AEM Access Token using POSTMan for SSO by Sreekanth Choudry Nalabotu Abstract Goal This article is on using POSTMan requests to generate a long lived signed JWT token and exchange it with Adobe IMS for an IMS Access Token, valid for 24 hours. Using the access token you can make SSO requests to AEM sending the token in Authorization header. Check AEM documentation var navigator = {}; var window = {}; var PRIVATE_KEY = "-----BEGIN RSA PRIVATE KEY-----\r\nMIIECvfNI=\r\n-----END RSA PRIVATE KEY-----\r\n" var CLIENT_ID = "cm-pxxxx-exxxxx-integration"; var ORG_ID = "2Fxxxxxxx@AdobeOrg"; var SUBJECT = "31xxxxxx@techacct.adobe.com"; var META_SCOPE = "https://ims-na1.adobelogin.com/s/ent_aem_cloud_api"; pm.sendRequest('http://kjur.github.io/jsrsasign/jsrsasign-latest-all-min.js', (error, response) => { if (error) { console.log(error); } else { let resBody = new Buffer.from(response.stream).toString() pm.globals.set("jsrsasign-js", resBody); eval
Hi all, I am trying to setup an adobe io runtime action but have the following issue - 1. When I run aio app init test-project on my local I get the below - ? Select Org:zsh: suspended aio app init lookbook But my "aio aem:rde:setup" runs successfully.I am able to set the Org, Program and Environment to deploy to RDE via AIO plugin. What then is the project initialization not working? Thanks,Nagesh
Request for Feature Enhancement (RFE) Summary: Content Hub Use-case: Granular Permissions: Introduce granular permissions control in content hub to allow more precise access management at the user, group and asset level Public Sharing Enhancements: Enable public sharing of collections in Content Hub to simplify external access and collaboration through enhanced public sharing link sharing functionality Current/Experienced Behavior: No public sharing for collections available Improved/Expected Behavior: Enabling sharing of collections Environment Details (AEM version/service pack, any other specifics if applicable): AEM 6.5 Customer-name/Organization name: Barclays Screenshot (if applicable): Code package (if applicable):
Hi! Does anyone have a great offboarding process they are willing to share? Do you comb through your list of contributor licenses and remove folks who are no longer with the company? Does anyone use Fusion for this governance? Thank you in advance!Jen
Hi Team,I have created a simple form using Google excel in EDS.Google excel file name: user-formSheet Names: 1) helix-default - To create form fields2) incoming: - To store the data3) helix-branch - For dropdown options Please see the screenshot below. helix-default sheet incoming sheet This is the form look like in my page I am facing an issue while submitting my form. When I try to send a POST request to http://localhost:3000/user-form, it throws a 405 Method Not Allowed error. I have set the method as POST in my form, but the request is still not accepted. Could you please guide me on how to enable POST requests for this route or if I need to configure it differently? See the console error while submitting the form - 405 method not allowed
Hi ;In my project, I want to convert PDFs from DAM into JSON,I tried to add this dependency in core/pom.xml===========================================<!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox --><dependency><groupId>org.apache.pdfbox</groupId><artifactId>pdfbox</artifactId><version>3.0.5</version></dependency>==============================================After adding this dependency, the Core module enters the installed state due to the dependency.(system/console/components)&(system/console/bundles)I also tried to upload the PDF Box bundles in the web console. That also does not solve the issue.Any suggestions should be appreciated. ===================================When I used Tika, it gave just text content in JSON.
Hi,I am trying to achieve the custom styles in the new editor of content fragments RTE (universal editor) using AEM App Builder. Followed adobe documentations on the extension points. As of now, we can add only individual plugin with no dropdown style. Please let me know, if anyone has completed this kind of implementation. I am looking for the similar implementation of paragraph format plugin with custom styles. https://developer.adobe.com/uix/docs/services/aem-cf-editor/api/ https://developer.adobe.com/uix/docs/services/aem-cf-editor/api/rte-toolbar/
Description - Allow New Microsoft Teams to Integrate with WorkfrontWhy is this feature important to you - Classic Microsoft Teams is being retired on the 30th June 2025 and we have uses who spend a lot of time in teams and find the functionality very useful.How would you like the feature to work - Transfer the functionality of Classic Teams onto New Teams which will allows you to interact with notifications / approvals from WF and add new requests into WF.Current Behaviour - It connects but no interactions to or from WF are possible. WF support confirm there is no current plan to get this working.
Hi,it is possible to make changes on modul witdh or other barcode parameters in LiveCyleDesigner?I have a Barcode 128 with a long content (40 alphanumeric signs). For better scanning i need to cange the interval between the lines. With Codesoft it is posssible. How i can make it in ALD? Best regards,
With the new EU rule about cookie consent. I just want to clarify, what can and cannot be tracked? Some further questions in case cookies are denied: 1. Can Visits still be tracked?2. I understand that Unique visitor might not get tracked but can an aggregate number of visitors be ascertained?3. Would number of visitors be an inflated number?4. Deeper engagement tracking for example, users that have engaged for over 2 pages in 1 visit, can a metric like so be tracked? Thank you so much!
Hi,I am using com.adobe.fd.forms.api.FormService.renderPDFForm for rendering dynamic PDF for a use case. Here I am passing like this:formsService.renderPDFForm("crx://" + xdpPath, xmlDataDocument, renderOptions) The rendered PDF from the above service works for all the cases, except when the XDP template as <value> <exData contentType="text/html"> <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"><p>sample text</p></body> </exData></value> the exData is not loading on the rendered PDF. Can anyone help me understand the reason. Is it a bug with the service?
Hello, Seeking for help, The user with a right access cannot edit the column of some issue in a report board. here is another issue that is editable. (Same user with a manage access) Thanks in advance.
I can't find any doc about this subject that could bring me a solution, then here I'm: I already created many projects using API calls, via Snaplogic and even updated them in the same way, but what doesn't work is the action attachTemplate as below: this was supposed to add a new Template to a existing project, but when I use PUT passing the update parameters it returns error code 422.
The RTE Color Picker Plugin for AEM by @mukeshyadav_ Dear AEM Community, I'd like to share my recently published article of a custom solution for RTE color picker plugin in AEM. Overview The RTE does not have OOTB color picker plugin. There are few custom solutions available over the internet, however, they often lead to the following common frustrations: Time to load the dialog. Multiple clicks for simple action. Inconsistency with other Apps. This blog is having two section. In Section 1, the plugin is developed by extending the OOTB class CUI.rte.plugins.Plugin, whereas Section 2 is more about the common steps to be followed to add an available plugin to the RTE component toolbar. You can download and install the package from the link available in blog as I have kept the plugin component inside /apps folder directly from the CRX package manager and jump to the steps mentioned in section 2. Section 1:- Create a clien
I have refered the github sample app showing only the java code as reference and have implemented the sample in kotlin. I have shared my code fix the issue please. getting response as null only override fun onCreate() { super.onCreate() MobileCore.setLogLevel(LoggingMode.VERBOSE) MobileCore.initialize(this, LAUNCH_ENVIRONMENT_FILE_ID) { print("Adobe mobile SDKs are successfully registered.") } Log.d("SDKTest", "successsSDK1") Log.d("SDKTest", "Adobe mobile SDKs are successfully registered.") val decisionScope = DecisionScope("Android_Test") val data = mapOf( "__adobe" to mapOf( "target" to mapOf( "a.profile_language" to "en-us", "a.DeviceName" to "phone" ) ) ) Optimize.updatePropositions( listOf(decisionScope), null, data, object : AdobeCallback<Map<DecisionScope, O
Hi all,We are currently working for a customer that is on Helix-4. You can see the code repo here - https://github.com/hlxsites/danaher-ls-aem-prod.We would like to upgrade from Helix-4 to Helix-5. So, here are things that we would need your support.1. Could you pls point to the step by step documentation to migrate from Helix-4 to Helix-5. Can't find any comprehensive guide to do this on the public documentation.2. We would like to understand if it is mandatory for all pages to be entirely on Universal Editor to migrate from Helix-4 to Helix-5. Asking this explicitly because, we still have some pages that are authored in AEM and being delivered through EDS via Converter module. More details here - https://github.com/hlxsites/danaher-ls-aem-prod/tree/main/tools ThanksBSR
Hi Team,I am trying to implant the js and html files created for Chat bot within the web application.The chat bot is working fine when opened using browser.It includes the following files 1.index.html2.chat.css3.home.css4.chat.js - includes the function of buttons5.responces.js- includes the functionalities added to get responses.Can you kindly guide me where and in which activity should I have to put the above codes in web application.
Hello!Is there a filter in smart list to find the people who Aborted the email campaign, similar to opened/clicked/bounced. Ref: Email Performance Report - Aborted: Number of emails that could not be delivered and no bounce event was received. An email is automatically termed as Aborted if a response is not received within three days of the email send. Thanks!
Hi! I am looking for some clarity on the date ranges within Adobe Analytics. Why are the two numbers different? And which one is more accurate for monthly reporting?
When attempting to update the Adobe Web SDK, I am seeing this error despite the Web SDK not being in any libraries - any advice or guidance is much appreciated! Thanks,Ty
wanted to check if web crawlers works on Adobe target so SEO and AI can still pickup the experiments content?
Two upcoming deprecations may impact your integration with Marketo Engage and may require action. Previously, both the SOAP API, and the REST API Access Token in Query Parameter were to be deprecated on 31 October 2025. They will now be deprecated on 31 January 2026. The Marketo Engage SOAP API will be fully deprecated on 31 January 2026. Please review if you are still using the SOAP API in one or more of your Marketo subscriptions. To avoid disruptions of service, you will need to retire or migrate any services using the SOAP API to the Marketo Engage REST API by 31 January 2026. Consult the Migration Guide for further information. Marketo Engage Support is only able to provide the IP address of requests made to the SOAP API. On 31 January 2026, the Marketo Engage REST API will no longer accept access tokens for authentication and authorization via the ‘access_token’ query param
Hi everyone, we are trying to implement Adobe Target on SFCC without Tag Manager. Currently we have downloaded the at.js file from Target and tried importing the file directly, but during the build process, the file gets removed and is no longer accessible. Could you please provide us with a guide with the correct steps for a proper installation and integration on SFCC? We only found documentation for the implementation on AEM and we are stuck with the file being canceled. We also reached the SFCC support who invited us to ask directly to you for this kind of guide. Thank you in advance. Best regards, Sara
Hi All, as part of urgent requirement, I need to create 1 Monitoring workflow-Monitoring workflow to send daily delivery count in adobe campaign classic Can anyone please help me on thiswhat all activities I should use @parthas @ParthaSarathy
Hello all, I need to create some can anyone please suggest some example on the samewhat kind of monitoring workflows, we use generally on all project
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.