Welcome to the Adobe Developer Community! Connect with peers to ask questions and share best practices.
Recently active
I tried to add the offline_access scope in the link to get the authorization code but got an error saying invalid scope, In the Curl command to generate the access token there is no scope parameter. I am trying to get a refresh token which could be used to generate a new access token once it expires, i.e. After one day.Could someone point me to the correct documentation or provide some suggestions. Thanks.
I am trying to delete a project from the developer console but when i do i get the message "This project cannot be deleted". Then i get linked to this documentation(https://developer.adobe.com/developer-console/docs/guides/projects/#delete-a-project). It says I cannot delete a project that contains a plugin. I tried to see if I was able to delete the plugin file(zxp file) from the project and then maybe I could delete the project itself, but that failed. Are there any work arounds to this?
I am trying to connect server via sFTP and I did code that is given below-- const fetch = require('node-fetch')const { Core } = require('@adobe/aio-sdk')const { errorResponse, stringParameters, checkMissingRequestInputs } = require('../utils')const sftpClient = require('ssh2-sftp-client');// main function that will be executed by Adobe I/O Runtimeasync function main(params) {// create a Loggerconst logger = Core.Logger('main', { level: params.LOG_LEVEL || 'info' })let sftp = new sftpClient();try {// 'info' is the default level if not setlogger. info('Calling the main action')// log parameters, only if params.LOG_LEVEL === 'debug'logger.debug(stringParameters(params))//Check for missing request input parameters and headersconst requiredParams = ['host', 'port', 'username', 'password']const requiredHeaders = []const errorMessage = checkMissingRequestInputs(params, requiredParams, requiredHeaders)if (errorMessage) {// return and log client errorsreturn errorResponse
Hi, I got an email with subject "[Action Required] Your integrations using Service Account (JWT) credentials will need to migrate" to ex staff member account. I wanted to check if he finished it and if so what web apps are using it. I don't see any web apps calling it (but it seems to only go back 6 months) and "Last Service Activity" also shows "None Recorded". I tried contacting Adobe support and they told me to post here. Help please. Danny
Hii, I was creating my PDF converter using Laravel 10, but while installing the PDF service using Composer, I am facing an issue. It is asking me for a username and password to install the package. I am using my client_id as the username, and instead of a password, I am using client_secret. However, I am getting an error in cmd with an invalid credential message. Please help me here.thank you
I've been searching for the past two days for a way to implement a create user function in my ASP.NET Core Web API without using the okta register user view, since I have a react.js frontend, but I can't seem to find a direct way.
hiiii want to crop margin from my generated pdf from html to pdf conversion.i am trying to genrate pdf from html to pdf where i am getting extra white margin space around every page which i want to remove using rest api.
We currently have a project setup for as part of our user sync from on-prem AD - and we need to edit this to complete the JWT to OAuth migration. However, for the last few days we've been having a 500 error (see screenshot) when we open the project, and the JWT credential tab is missing. Not sure if this is a transient error on your side and we just need to wait, or if there is an issue with our project? Can we just re-create this with new OAuth creds instead if necessary? Thanks.
I recently enabled JS bundling for my store, which caused the Stripe module not to load in my browser, resulting in the payment button not appearing on my page. Although I updated both the Stripe module and the theme, the issue remains unresolved, and I encountered the following error afterward. If i disable the bundling module load correctly. core.min.js:57 Unable to resolve dependency {name: 'StripeIntegration_Payments/js/stripe_payments_express', parents: Array(1), deps: Array(0), cb: undefined, run: ƒ, …} Please help me and let me know any other data needs.
Hallo,I am looking for an example, how to use the UserSyncTool (UST) in combination with the OAuth-Server-to-Server-Credential with an existing OAuth-AccessToken.Testing the new OAuth-connection always generates a new OAuth-AccessToken. The UST documentation seems to have only an example for the connector-umapi.yml but no example for an OAuth-parameter of the UST v9+ to handle an existing AccessToken.Many Adobe-Websites have an outdated hyperlink to a 404-site (https://github.com/adobe-apiplatform/user-sync.py/blob/user-guide-wip/en/user-manual/connect_adobe.md), and at https://adobe-apiplatform.github.io/user-sync.py/en/user-manual/connect_adobe.html only the yml-file is described.Can anyone help me to find an example of an UST-command using an existing OAuth-AccessToken?
Hello I cannot open a ticket and there is no contact form si I am asking here how can I get the last version of Adobe LiveCycle ES4 please ?? Thank you.
Hi all,I'm facing warn entries in my error.log due to a deprecated lucene index. org.apache.jackrabbit.oak.plugins.index.lucene.LucenePropertyIndex This index is deprecated: /oak:index/lucene Based on this doc https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/operations/removal-generic-lucene-index for reference search AEM should provide a new index /oak:index/pathreference but I cannot find it on my instances.Anyone faced the same issue?Where I can find the pathreference index definition? Thank you! Fabio
Good morning,I am using the cloud version of AEM, and I want to modify the iframesrc regexp in the /libs/cq/xssprotection/config.xml file.I did the overlay from /libs to /apps in "http://localhost:4502/crx/de/index.jsp".I successfully modified the regexp and saved it, everything went well up to this point.However, I haven't been able to import the changes into the project, so I can't push the change to production environments.Can someone help me understand why the changes are not reflected in the project?Best regards,Thank you!
Hi There, We are building a POC for a GEOlayers UXP plugin. The setup is very simple atm:UXP Plugin that displays a webview of https://editor.geolayers.app Our webapp on editor.geolayers.app uses firebase auth. It works fine across all browsers. However inside a UXP webview the google sign in breaks: Has anyone an idea what's wrong here? I'd love to know what the underlying chromium is doing different that leads to the error. And is there a workaround?I have attached a screedcast and the UXP manifest. Thanks for any advice on this! Best regards,Markus
I was able to create a free personal account and create a sandbox for myself, but I’m unable to add the Adobe Acrobat Sign API plugin to a project. I’m receiving a permissions error and I do not see any functionality in the dev console or sandbox to allow this. Can you help or direct me to the instructions for fixing the permissions error?
I would like to test the API for Frame.io for a project in our company. For that reason I created an account on the frame.io website and in the developer documentation is written, that I need to create a project on developer.adobe.com and add frame.io there. So I also have an account on adobe. But now I can not add the frame.io API to a project on developer.adobe.com. I have the following message when I try to select it:Permission requiredThis service is available in your organization but has not been provisioned to you. Reach out to your admin to grant you permission to use this service.Is there any option to activate the API. Currently I only have a personal account and it it would only be for test purpose, if it even is an option for our project.Thanks a lot for your help.
const { Core } = require('@adobe/aio-sdk')const { errorResponse, stringParameters, checkMissingRequestInputs } = require('../utils')const filesLib = require('@adobe/aio-lib-files')async function main(params) { const logger = Core.Logger('main', { level: params.LOG_LEVEL || 'info' })try {// 'info' is the default level if not setlogger.info('Calling the main action to delete Brief file')// log parameters, only if params.LOG_LEVEL === 'debug'logger.debug(stringParameters(params))//Check for missing request input parameters and headersconst requiredParams = ['briefids']const requiredHeaders = ['Authorization']const errorMessage = checkMissingRequestInputs(params, requiredParams, requiredHeaders)if (errorMessage) {// return and log client errorsreturn errorResponse(400, errorMessage, logger)}const files = await filesLib.init()const existingfile = await files.list('/brief/')if (!existingfile.length) {errorMessage('400', `can not perform delete operation`, logger)}else {await files
I am trying to get support from Adobe because the extension we've submitted has been in "Manual QA Review" for over a month. Well beyond the estimated timeframe and there have been 0 updates. I'm trying to submit a support ticket through Experience League and the "Product List" dropdown is empty, not allowing me to proceed despite trying multiple times, different devices, cleared cookies/cache, etc. Emails to the support email on the site also go ignored. Can someone from Adobe please assist?
I'm trying to set up Adobe I/O API for syncing data with Adobe Events using App Builder. I've successfully created a project and a workspace in the Developer Console.When I connect my local Adobe Commerce setup to this workspace, the event data syncs properly. However, when I attempt the same connection from my development environment on Adobe Commerce Cloud, I receive the following error:**Event publishing failed: Error code: 403; reason: Forbidden**```json{"error": {"code": "Forbidden","message": "Client ID is invalid","details": {"error_code": "403003"}}}```Can someone assist me with this issue?
We need to implement multiple forms on our site, each with a different server name and "from" address, but this setup is not working as expected. We're referencing the documentation from this link:https://joao.ws/how-to-send-custom-emails-in-aem-part-2-multiple-providers/.but this form is not working in the environment. we a another in which we have used the default.mailSErvice that is working fine on the environment as well.ERROR:- 21.10.2024 09:37:12.101 [cm-p123474-e1277123-aem-author-866fd95655-qzfzr] *INFO* [122.180.144.91 [1729503300341] GET /content/projectName/de/de/kontakt/jcr:content/root/container/renewablescontainer_935070413/renewablestabs/item_1/contactform.renewablesContactForm.json HTTP/1.1] com.maxboeglsitesassets.core.servlets.RenewablesContactUsFormServlet Messaging Exception: info(); while sending email :: java.net.ConnectException: Connection timed out (Connection timed out) Couldn't connect to host, port: smtp.gmail.com, 30465; timeout -1com.sun.mail.util.Mai
Hi Team, we have a requirement to get session of an AEM instance in another(different) AEM instance. I know that using jackrabbit-standalone(JcrUtil.getRepository we can get in standalone application). Same logic is not working when we try to access on aem serverAEM version is : 6.5java version : java 8Please suggest if there is any way to achieve this
This is a simple structure of the Adobe App Builder app, how can I use node.js in it? For example, we created a client for frontend(react) and a server for the backend (node.js) in mern technology, here web src for the frontend part. I created a login component in the web src folder and created an action named register user which takes multiple nodes like name,phone_no, email, and password now I want to authenticate the user through the login page with the data available in register action How can I authenticate so that authorized people can access the home page. Can anyone provide the workflow structure of the document-relatedthis, as.
Bonjour,Je voudrais pouvoir accéder à la liste des objets métiers depuis le boitier requête, comme on le fait déjà avec l'objet "recipient" quels étapes devons nous suivre ? Pourriez vous donner des pistes s'il vous plait ?Cordialement
Hi,I have a question about the migration.the next step is to delete the old credentials. Is it possible to test the new credentials and if so, how?Is the next step only to delete the old credentials or is there anlthing elese to do?Maybe someone can help me out.Christian
안녕하세요 Acrobat Sign 관련하여 API 개발을 진행하던 중,MegaSign으로 생성 직후에 ChildAgreement의 ID 값을 받아올 수 없다는 것을 알게 되었습니다. 해당 값을 가지고 있어야 하는데, 생성 직후에 저장을 할 수 없어이후에 주기적인 batch를 통한 API 호출을 통해서 ChildAgreement의 ID를 가져오고자 하였습니다. 하지만,GET /megaSigns/{megaSignId}GET /megaSigns/{megaSignId}/agreementsGET /agreements/{agreementId}등의 API를 통해 ChildAgreement의 ID 값을 가져올 수는 있지만,해당 ID 값들이 제가 가지고 있는 데이터(megaSignId, 서명자 이메일, 서명자 이름) 중,어떠한 데이터와 일치하는 항목인지 구별할 수 있는 기준이나 구분 값이 없는 것으로 보입니다. 이런 경우 어떠한 가이드라인이 있을까요?
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.