Welcome to the Adobe Developer Community! Connect with peers to ask questions and share best practices.
Recently active
Hi, We were recently notified of a security vulnerability in JSON Web Token (JWT) library by our company's security team (CVE #: CVE-2022-23529). We generate JWT in Adobe I/O dashboard and use it in AEM to interface with Adobe Campaign. We are trying to find out whether this vulnerability has been addressed by Adobe already or will be addressed soon. So, I am trying to create a support ticket for Adobe I/O product.Previously, support tickets for Adobe I/O and Adobe Campaign had to be created at this URL: https://support.neolane.net. But this URL no longer works. I have also asked AMS to provide this information. Nothing from them so far. So, trying this route. Appreciate any help in this regard. Thanks, Shiv.
Hi Team, We are using the old version of API for PDF services to convert other Microsoft documents to PDF.I would like to know if there is a timeline by which we should migrate to the new API version for enterprise paid accounts.
Hi, I have to create a CI CD pipeline for automatic build & deployment of my react code deployed on app builder. We are currently using Gitlab & would like to integrate the same with our CI CD pipeline. I was just following this document - https://developer.adobe.com/app-builder/docs/guides/deployment/ci_cd_for_firefly_apps/ to create the pipeline, but got stuck when asked to create secret tokens within Gitlab. Can someone please guide me how do I create secret tokens in Gitlab. Thanks
Screenshot_20230704-120445.png
I am new to Adobe and I have found a email of mine added to Adobe account I didn't give Authorization To use my email address I found that someone had license for windows 10 and when I tried to get a couple names the information was gone I been trying to figure out how people are deleting program from My computer and phone I need some help with this I can not send email out because they are being sent somewhere else I found a email Link to Carnegie university and then It's was gone thanks like I said I am not an IT person at all I'm not sure if anyone else has any ideas I have been stopped from any security Microsoft and Gmail thanks for your time Alan
Hello there, I received the email alert about deprecation of JWT method in favor of OAuth.I'm using nodejs package provided by adobe (https://www.npmjs.com/package/@adobe/pdfservices-node-sdk) in a firebase function.I'd like to know what changes I need to apply to my code to migrate to OAuth method.Can someone help me? I did't find any documentation about that Thanks
Hello Everyone, I am trying to access Experience Platform API Documentation link, but it keeps on loading. When I tried to inspect network tab, I found out the request is failed. I am using Chrome on Mac system. How can I resolve this issue?Link: https://developer.adobe.com/experience-platform-apis/references/schema-registry/
Hi All,I am not able to create a free sandbox for training purposes in AEM. The steps provided on the internet are not working properly. Please provide a solution link, if available.Thanks,Vivek
We have found out that the AppBuilder console will only allow 10 Events to be registered https://developer.adobe.com/events/docs/guides/#quotaservice-on-pipeline IMS Credential (client Id) But in our requirement where we are working use case, we need more than 10 events. Is there any way we can add more than 10 events ?
Hello there, I am new to AEM and would like to know in general, what access do developers need in the crx manager and also how to assign those permissions. Every explanation and suggestions are welcomed. Thanks
Hi, We have built a custom react app which is headless, however uses API mesh to query data from AEM Content Fragments & Product Data from Magento. Now, I would like to use the existing infrastructure which is already having a lot of products including AEM Cloud As A Service + Magento on cloud. I need to now host my custom react app on the APP builder cloud infrastructure. Also, I would like to understand the architecture with respect to Load Balancer & CDN. Does APP builder have capacity to increase the cloud services based upon the traffic on the website? Any suggestions or documentation would be highly appreciated. Thanks,
I've been utilizing JWT credentials with the SDK to make API calls successfully up until now. Here's the .NET code snippet I've been using: var executionContext = ExecutionContext.Create(this.credentials); FileRef destination = fileRefOperation.Execute(executionContext); However, a few days ago, I started encountering an error message: "{"Access Forbidden; transactionId=xxx"}" whenever I attempt to execute the API calls. This type of credentials should not be deprecated until January of 2025. Anyway, To troubleshoot the issue, I attempted to migrate to OAuth credentials but I could not found the .net documentation updated for the oauth token. All of them are working with the old jwt authentication Trying to use the same sdk I encountered another error: "The client must have the exchange_jwt scope pedfservicesdk.".I also can acces the Oauth token but the sdk does not provide something to use it.
hi i was wondering if anyone knows how to get rid of adobe help center on the backend admin of magento 2.4.6. it displays on an iframe and messes up the javascript on the dashboard and side navigation. thank you in advance.
Hello, I am implementing a functionality to download images from Adobe stock programmatically and I am logging in using Adobe IMS API but when I am logging in and getting a response back, I am not getting the refresh token back. Here is the URL to the documentation which I referred to in order to implement the login functionality. https://developer.adobe.com/developer-console/docs/guides/authentication/UserAuthentication/IMS/ I checked the documentation and it is mentioned over there "Once you have fetched the access tokens for a user you may also be provided a refresh token in the response. A refresh token is only presented when the offline_access scope is requested in the authorize step. Please note that not all APIs and Services support the offline_access scope for security reasons."So my concern is, how can I get the refresh token? Please help as I am not able to find any helpful resources for the same. Any he
We have been told to migrate our login credentials to use Oauth but i cannot find an example of the code to use. Can anyone help me convert this code to Oauth.Example Node Code :const PDFServicesSdk = require('@adobe/pdfservices-node-sdk'); try { // Initial setup, create credentials instance. const credentials = PDFServicesSdk.Credentials .serviceAccountCredentialsBuilder() .fromFile("pdfservices-api-credentials.json") .build(); const clientConfig = PDFServicesSdk.ClientConfig .clientConfigBuilder() .withConnectTimeout(1200000) .withReadTimeout(600000) .build(); //Create an ExecutionContext using credentials and create a new operation instance. const executionContext = PDFServicesSdk.ExecutionContext.create(credentials, clientCon
Is it possible to create a technical account for accessing the cloudManager git repository ? If possible, how can we do this ?Validity of the cloudManager git repository access token (both normal and technical account ) ?Is it possible to create a technical account in adobe developer console, which we can use for the aio cloud-manager command ?Is it possible to use and configure our GitHub enterprise repository in cloudManager pipeline ?
I have a requirement where i need to pull data about agreements as a batch job. can you help me with documentation on what kind of auth should be done here and any reference document?
Hello,Need clarification on following queries related to API Mesh:1. Can we fetch internal logs of the API mesh. For e.g. what was the request payload sent to the source systems (Open API, GraphQL, JSONSchema)2. Is the request payload visible if we enable includeHttpDetails option in mesh configuration.3. Could we get details regarding licensing report. Is license bundled when we procure license for AEM as Cloud Service or Adobe Commerce.4.Is there is any Rate limitation. How may number of maximum requests can be sent say per minute, per second.5. Do we need to submit the Project (App Builder) for review to use API mesh for Production usage.6. Is retry support present in API Mesh? 7. Dashboards available for monitoring API mesh.
I'm trying to add some custom JavaScript via Adobe Target for an A/B test. I have a simple countdown timer in JS that runs great via my codepen. The problem is that it seems that Adobe Target loads the experience a bit late. Due to the need for page load improvements the Adobe Target script is implemented in the <body>, not the <head> of the site. (Yes, I know.. but I'm just a small cog in the machine.) Are there any trick or techniques that I can use to get the script to load more efficiently? I've tried a MutationObserver, 'window.onload = function()' and DOMContentLoaded - but nothing seems to help. The timer outputs like this when running via Target:When it should be like this based on my script: Any insights on a solution is appreciated.
I am completely new to SCIM API.Need your help in setting up and getting the entitlement metadata via SCIM API from sailpoint and fetch it in Postman.Any dummy code would be very helpful which I will edit as per my exact need.
Hello,I need to disable module output for the Magento_banner module. I'm tried to disable the module output using the DevDocs reference link, Also I have followed the same step as per the given reference but it is not working.I'm using the Magento Commerce cloud 2.4.3-p1 version.I followed the same step and tried to check the while running below commandphp bin/magento config:show advanced/modules_disable_output/Magento_bannerAfter running the command I got the below errorNote: I also checked with a fresh Magento setup(version 2.4.4) but did not work.
I am trying to pull reports from Data Warehouse that use multiple breakdown dimensions, including segments, but am not able to add segments as a dimension. Found this old thread suggesting it is not supported in Adobe Analytics 1.4 API, is that still the case? If it is still the case, how could I use Adobe Analytics 2.0 API to get the same reports with multiple breakdowns including segments as a dimension?
Sorry for such a basic question, but I cannot seem to find the appropriate API to use to download images from a user's cloud documents/libraries. Is this possible? If so, what API should I be looking at? This is for an external program to be able to dynamically pull in images for further composition outside of Adobe.
How to update and change existing customer address data using CSV.Also I have tried importing customer data using CSV but it creates a new address and not an existing address.system->import->customer addresses->Add/Update Complex Data.Then I import the data and check in the admin panel for the customer for whom address has updated.But there the new row gets added and i want updated from the exist address only.So this is possible to update address without existing new address row?
Hey, Trying to automate offboarding and am using UserAction.remove_from_organization(delete_account=False). When deleting users from the Admin Console you get prompted to transfer contents, is there any way to do that from the umapi-client?
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.