Welcome to the Adobe Developer Community! Connect with peers to ask questions and share best practices.
Recently active
Hi team,In developer console, I am getting waring "Your Service Account (JWT) credential has been deprecated" for my Adobe Target IMS Integration project. How can I migrate this to oAuth ?
Hello, As part of one of my requirement, I need to create a dialog enabling author to drag and drop an image of their choice. As part of the requirement, dialog should load one image as a default image always and then author will update the image as per their need.Can someone help me out that how can I set one image to appear as a default image on dialog load or which property do I need to specify for making a default image to appear. Best Regards,Ravi
I am trying https://adobe-sites.redoc.ly/tag/Fragment-Management#operation/fragments/createFragment CF API to programmatically create content fragments from inside AppBuilder action. I first tried the swagger request from postman and verified the request works. Request looks like this curl --location 'https://author-*-*.adobeaemcloud.com/adobe/sites/cf/fragments' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer <hidden>' \ --data '{ "title": "625875", "modelId": "L2NvbmYvc2d3cy9jb3JwL3NldHRpbmdzL2RhbS9jZm0vbW9kZWxzL3NhbHNpZnktZnJhZ21lbnQtbW9kZWw", "parentPath": "/content/dam/product-content", "fields": [{"name":"salsify:ageStatement","values":["Age Statement 625875"],"type":"text"},{"name":"salsify:brandStory","values":["Brand Story 625875"],"type":"text"},{"name":"salsify:tastingNotes","type":"text"}] }' Next I hardcoded and generated exact request into an AppBuilder action and invoked it. The request keeps faili
I am trying to use https://github.com/adobe/aem-upload for my project. I was able to test separately from local by keeping as asset in local folder and uploading successfully into cloud aem. But next level, I am trying to pass url instead of local files and run from AppBuilder action. I realize, this is working only with local files. When I try like const targetUrl = 'http://localhost:4502/content/dam/target'; // list of all local files that will be uploaded. const uploadFiles = [ { fileName: 'file1.jpg', // name of the file as it will appear in AEM fileSize: 1024, // total size, in bytes, of the file filePath: 'https://www.google.com/publicurl/file1.jpg' }, { fileName: 'file2.jpg', fileSize: 512, filePath: 'https://www.google.com/publicurl/file2.jpg' } ]; const upload = new DirectBinary.DirectBinaryUpload(); const options = new DirectBinary.DirectBinaryUploadOptions() .withUrl(targetUrl)
i am trying to add app menu at adobe admin through adobe app builder.Now i am hitting API to get menu items but i am getting this error . i filled each header value correctly.here is detailsAPI -https://aemx-mngr.adobe.io/v1/extensions?extensionPoints=commerce/backend-ui/1 headers-self::HEADER_ACCEPT => self::HEADER_VALUE_APPLICATION_JSON,self::HEADER_AUTHORIZATION => 'Bearer ' . $this->config->getIMSToken(),self::HEADER_X_ORG_ID => $this->config->getOrganizationId(),self::HEADER_X_API_KEY => 'aemx-mngr-adobe-commerce'
Hi Team Trying to create a sample App using Adobe IO runtime, Command running on the console $aio app init sampleappReturn on belowSelect Org: Adobe AGS1502There are no Projects in here, let's create a new one.Enter Project details: Name: aioprj Title: AIO Sample App Project Description: AIO Sample App Project for testing purposes⠴ Enabling Adobe I/O Runtime... › Error: [CoreConsoleAPISDK:ERROR_CREATE_RUNTIME_NAMESPACE] 500 - Internal Server Error ("Error creating namespace") Even thought the project is created on developer.adobe.com/console/projects and the app is also created at my local environment, wondering why this 500 error is happening Thanks in advance for the help and for the collaboration
I'm wondering if you can transfer a XD Plugin I created to a different Adobe account. Is that possible?
Hello, we are currently attempting to migrate our existing Adobe Stock api library to the new non deprecated Oauth Server-to-Server. The functionality we are attempting to recreate is to license images via the api, however we are experiencing the following issues:1) We have attempted to use the Adobe migration tool to create the Oauth Server-to-server credential BUT this new credential is not connected to the Adobe Stock api service (and no option to connect). We therefore do not have the correct scopes to license images from the Adobe Stock API service.2) We have tried creating a brand new "Project" BUT this new project will only allow standard Oauth credentials. 3) We have another experiment working where we used standard Oauth Web credentials, with this method we were able to license images BUT this would require someone in our organisation manually granting access to the API via Oauth every 24 hours which is the maximum duration for a oauth grants. Please could someone en
Hi all. First thank you for all your help. Is there a way to replicate adobe content logs that is in the admin panel? Ultimately we are needing a way to see shared public links in Adobe products ( Reader, Acrobat, Photoshop, Illustrator, Adobe XD etc.) We have received good info from the user API and using Adobe io events using Creative Cloud libraries, Creative Cloud Assets, Adobe XD cloud docs providers from the developer portal. However, the sharing link and auditing data like the content logs have are missing. Optimal solution is use an api or webhook to get the events like content logs have in the exported CSV file from the adobe admin console. Again appreciate the help! thank you.
I am having a issue with rich text, componentWhen I am adding a hyper link in rich text component with tel:+number. In the dailog and then when I click doneIn page it's showing as link and the when we link a prompt is opening to select option to call this is the actual behavior and it's working as expected. But now the issue comes here when I am trying to edit that link when I open dialog the hyperlink is getting ripped of that link is showing as normal text but on page it's working as a link as expected. And in the repository when I am checking the value is getting stored as tel:+1234567890 this is what I added and this is getting stored in crxde.But when I am opening the dailog to edit it I am not able to see it. And this thing is happening only when we are adding + character if we add without + character (tel:1234567890) in dailog the link is not striping@vijayalakshmi_s @aanchal-sikka @satheeskannak @mohan_dugganab
Hi Team, I am getting migration mail for a project AdvancedNetworkingSMTP, which is currently using JWT token. This project is using for sending the emails. Now I have gone through the document provided by Adobe for migration.But my questions are1. After migrating how can I test now my application is using oAuth server-to-server for creating tokens ?2. Do I need to make changes in codebase also ?3. Is there any tab inside project in developer console mode where I can check the token created is by oAuth server-to-server or by JWT ?
Hi,I have installed the ubuntu app and i have installed magento in it but its not starting..Its giving 404 on localserver. Can anyone explain the behaviour and is this the problem because of using nginx as server provider or I should choose apache?@arunpatidar
I am experimenting https://developer.adobe.com/events/docs/guides/api/journaling_api/#fetching-your-first-batch-of-events-from-the-journalI am trying to create action as event subscriber, read event and create assets in aem. I was able to create provider, register event and submit a sample event into the journal. Next I am able to fetch the event from journal queue. I created an adobe io action, and from node, able to receive events and call assetcompute services. All good. Now my question is, do we persist the `last` event position? Since event is consumed by adobeio action , I cant keep in-memory. I have persist, and only storage is AEM, under some /var node property. Is this normal? In general when reading from Journal, from cloud microservice, do we persist last, so next time wen service wakes up, if can fetch `since` last. What is the general practice?
i am connecting admin ui sdk to adobe commerce admin but i am getting error while pressing button sent test event in adone i/o event .it showing failed to connect see logs ,what could be reason ,
Dear Adobe Support Team,I hope this email finds you well. I am writing to report an issue I encountered while attempting to download Adobe Experience Manager (AEM) version 6.5.17 from the Software Distribution portal.When I try to access the download link, I receive a 404 error page, indicating that the requested page is not found. Below is the URL I attempted to access:Download Link for AEM 6.5.17Attached is a screenshot of the error page for your reference.I would appreciate it if you could assist me in resolving this issue and provide an alternative way to download the required AEM version. Your prompt assistance in this matter would be greatly appreciated as it is critical for our ongoing project.Thank you for your support.Best regards,Phạm Minh Riêm
We have carried out some tests with fastly and made a configuration as documented here (https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/implementing/content-delivery/cdn-configuring-traffic) via a yaml file.After our tests we would like to restore the original state. However, it is not documented how this should be done.If I start the config pipeline with a yaml file that is empty or does not contain a complete data section e.g. kind: "CDN" version: "1" metadata: envTypes: [ "dev" ] then the config pipeline fails.Does anyone know a way to cleanly remove the already deployed config?
@kautuk_sahni Hi,This is in response to the question below, as the reply button is disabled on the following thread:Where to track reference number?Additionally, the URL of the idea is:Option to upload a folder in assetsCould you also explain why I am unable to reply to the question that I have asked?
I'm not a developer, merely a user. I'm on a Mac mini now running a beta of Sequoia-And I was offered an upgrade to Sequoia from Sonoma, so I took it. Now I am getting notifications of "CCLIbrary.app" asking me questions I can't answer. How do I stop it? I was sent (By Adobe) to the developer forum because I asked about a Beta issue.
I haven't been able to create support tickets since the support ticket has been moved to experience leage.
I want to understand every field in the OSGi config below in detail. My requirement is to purge only a specific translation project, not all projects. Can you explain?
Wondering if we can send a doc to Acrobat online for edit via api (pdf-editor). Similar to how it works when you upload a doc to https://www.adobe.com/acrobat/online/pdf-editor.html (note the cursor hovering the edit tool pictured below). I was unable to find a use case that does this on the pdf-services resource site.
I have installed ubuntu app from windows store and now I have setup everything on it and have also installed magento on it and I am running it on nginx server, but when starting the server it gives 404 error and magento is not running. Can anyone explain the behaviour and I have listened that magento is acquired by adobe is it legit??
We don't have ECID available, so we populate fallback_visitorId or visitorId. Now we have to move to MCID and also have to enable timestamps for the hits. How can I achieve it? Do we have any document for it?
I am trying to connect to a kafka topic and perform a runtime action, I want to run the code for each message that is found in the kafka feed. An direction on how to do this, and documentation?
URGENTI have created a webhook for all Agreement related events but I'm always receiving payload event as AGREEMENT_CREATED, is there anything to be done from my end?
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.