Adobe Express Developers
Recently active
Hello Adobe Express Community,I am integrating Adobe Express into a Ruby on Rails application and have encountered an issue while implementing the full-size editor. Here are the details of my setup and the problem:1. Integration Context: I am embedding Adobe Express into the application using client-side JavaScript.I have obtained an API key and followed the demo code provided in the documentation. 2. Issue Description: The integration works correctly when the user is not logged into Adobe.However, when attempting to save a design, the user is prompted to log in. After logging in, the following error appears:An unexpected error has occurred. Please try refreshing the page or return to the home screen.UUID: b453c2e8-36b5-45cc-bcdb-d728df914904 3. Environment Details: Operating System: macOSBrowsers Tested: Safari, ChromeHas anyone faced a similar issue, or is there guidance on debugging this specific error? Any help or pointers to resolve this would be greatly a
Hello everyone,# Issue with Adobe Express Embed SDK - animateFromAudio Quick Action## Environment- SDK Version: v4- Browser: [Microsoft Edge Version 132.0.2957.115]- Client ID: Properly configured in Adobe Developer Console- Implementation: Web application using vanilla JavaScript ## What I'm Trying to AchieveI'm trying to implement the animateFromAudio quick action to create animations from audio files using the Adobe Express Embed SDK. The goal is to allow users to upload an MP3 file and convert it into an animation. ## Current ImplementationI've followed the demo example, github and sdk from the documentation: javascript const docConfig = { asset: { type: "image", dataType: "base64", data: base64Audio // Base64 encoded audio file } }; const appConfig = { callbacks: { onCancel: () => {}, onError: (err) => { console.error('Error:', err); }, onLoadStart: () => {}, onLoad: () => {}, onPublishStart: () => {}, onPublish: (publishParams) =&
Hello,Is it possible to put the new Adobe Express feature: Animate from Audio on my website? Using Embed Sdk or something. Thank you.
Hi,Really loved the tool https://new.express.adobe.com/tools/animate-from-audio. I would like to call it as an API from Node or python. There is a sample application but it is a client application: https://github.com/AdobeDocs/cc-everywhere/blob/main/v4-sample/video-quickactions.html Can I create a server side node application that picks an animation, audio file, and streams back the video output? Is there a REST API endpoint? Do you have any examples? What would the input parameters look like for docConfig, appConfig, exportConfig, containerConfig? Thanks!
Hi there, i think i have migrated sucessfuly but when the adobe express is lunched but insted of getting the editor i get a message inside saying "Adobe Express is not available, you dont have access to this service"Can anyone help please?
I see the following messages when running the examples from https://github.com/AdobeDocs/cc-everywhere “Adobe Express is not available”.“You do not have access to this service. Contact your IT administrator to get access.” With the Adobe account I’m signed in with, I do have access to Express. Reproduction1. I downloaded the example from Github and followed the instructions.2. I installed local certificates.3. Server is running on www.jowan-deisgn.vercel.app Allowed domains includes that localhost port.
I see the following messages when running the examples from https://github.com/AdobeDocs/cc-everywhere “Adobe Express is not available”.“You do not have access to this service. Contact your IT administrator to get access.” With the Adobe account I’m signed in with, I do have access to Express. Reproduction1. I downloaded the example from Github and followed the instructions.2. I installed local certificates.3. Server is running on https://localhost:8000 Allowed domains includes that localhost port.
Our embed review team will be celebrating the holidays offline from December 24, 2024, through January 1, 2025. We will resume reviews from January 2, 2025. Any submissions not finalized before or received during the break will be handled as quickly as possible starting on January 2nd.
Issue Description: We have implemented a CSP policy on our website to enhance security and protect against various types of attacks. However, we're experiencing a specific CSP violation related to framing content from 'https://quick-actions.express.adobe.com/'. The error message states: Refused to frame 'https://quick-actions.express.adobe.com/' because an ancestor violates the following Content Security Policy directive: "frame-ancestors 'self' staging.paraclete.ai".Expected Behavior: We expect to be able to embed content from 'https://quick-actions.express.adobe.com/' within frames on our website without encountering CSP violations.Steps Taken: We have reviewed our CSP policy and confirmed that it includes 'self' and 'staging.paraclete.ai' in the 'frame-ancestors' directive. Despite this, we're still encountering the aforementioned violation.Request for Assistance: We kindly request your assistance in resolving this issue. Could you please provide guidance on how we can adjust o
I have set-up the add-on in my local machine and while I am trying to connect it to the adobe express but it is showing me this error :-even though the add-on is running on my machine. I am using the Ubuntu OS and Vs Code as code editor
I'm trying out the createWithTemplate() editor workflow. The goal is to present a bunch of premade templates on our page and have users instantiate a new copy of that template and start editing. So I think this is the correct workflow to use (instead of create(), createWithAsset(), or edit() However, whether I use a public template link or a library template link, the id that I'm extracting from the link (ex: urn:aaid:sc:US:654d068c-442d-4cea-aa93-7c748ec42f40) produces the not found or no access error. In all locations I'm logged in under the same account, so I'm doubting the no access error. I could be using the wrong string for the templateId. I've adjusted the docConfig in the sample to look like this:
Hello Everyone,I am trying to integrate Express Embed with my angular application. I am able to see every scripts is getting fetched as it is happening in sample but still the SDK is not getting loaded I have also served my localhost with https and valid SSL certificate and allowed the port also in my console still its not opening. Some error are coming in console but those error are also coming in sample code too which is working fine. Can you guys please help me on where I am doing wrong or is there something I am missing. Here is the code:// adobe-express.service.ts import { Injectable } from '@angular/core'; import "@spectrum-web-components/theme/express/theme-light.js"; import "@spectrum-web-components/theme/express/scale-medium.js"; import "@spectrum-web-components/theme/sp-theme.js"; import "@spectrum-web-components/button/sp-button.js"; import "@spectrum-web-components/divider/sp-divider.js"; @Injectable({ providedIn: 'root', }) export class AdobeSdkService { private
Hi team, I'm encountering the below issue while trying to initialize the Adobe Embed SDK in my web application. The error message I'm receiving is: code i am using is same code : https://github.com/AdobeDocs/cc-everywhere/blob/main/v4-sample/quickactions.html#L142 Note : I updated the client id and app name from developer console (Adobe Express Embed SDK)also the version i am using is Adobe Express Embed SDK ( V4) Thanks! Nithin Ninan
Greetings everyone. Customer wants to use Embed in such a way that, when first loaded, it comes up with a specific template already. Any clues no how to achieve this? TIA
Hello,I'm encountering an issue while trying to initialize the Adobe Embed SDK in my web application. The error message I'm receiving is: Here is the code I'm using: <script> (async () => { const initializeParams = { clientId: '<CLIENT_ID>', appName: '<APP_NAME>', }; const ccEverywhere = await window.CCEverywhere.initialize(initializeParams); const { editor } = ccEverywhere; const callbacks = { onCancel: () => {}, onPublish: (intent, publishParams) => { const localData = { project: publishParams.projectId, image: publishParams.asset[0].data }; console.log(localData); }, onError: (err) => { console.error('Error received:', err.toString()); }, }; let appConfig = { callbacks: callbacks }; const updateImage = (localData) => { image_data.src=localData.image;
How likely are you to recommend developing an integration with Adobe Express Embed SDK to a fellow developer? Full survey here!
Hi Everyone, We hope you are doing well! We’re thrilled to share the latest news about improving the Adobe Embed SDK documentation. Why this work is crucial We’re all about enhancing the developer experience for our partners and developers. This aligns perfectly with our mission to create a seamless developer journey and foster more profound engagement with our platform. What’s new Below is the list of additions and improvements we’ve worked on in the last month. Brand-New QuickStart Guide - Hit the ground running with our new QuickStart guide. It’s the roadmap to fast and efficient SDK integration with step-by-step instructions. Fresh Tutorials for Every Level: A Beginner’s Guide to Adobe Express Embed SDK- This guide will help you learn the basics and confidently embed the SDK into any app. In-Depth Full Editor Tutorial- Ready for more? Explore our detailed guide on integrating the full spectrum of editing tools. Check it out n
Hi there, I'm hitting a stumbling block attempting to get the Express Embed SDK to load. I can see a number of other posts in this forum highlighting the same issue, but the threads seem to go quiet with no solution, so I'm raising it again. I've tried following the Quickstart Guide instructions, both in my own app, as well as running the sample app, and both approaches I keep hitting the same issue: Adobe Express it not available I've tried to generate new credentials, new projects, but no success. My applications are running with HTTPS and a matching hostname.
Hi, I got the following error message with a UUID:1d4edeab-48a6-4caa-8eda-1471978e3dee How can I follow up on that and find out what the error was? Thanks
Hi, I am trying to test the "Convert to SVG" feature from Quick Actions in the Adobe Express SDK. I cannot get it working in my local, following the necessary steps. I see the "Adobe express not available" error when clicking the "Convert to SVG" button. I have downloaded the embed-sdk-samples repo from GitHub and set it up locally.I have created a project in the Adobe developer console and connected it with the Adobe Express Embed SDK service.Added localhost:8000 domain to test from my local. Updated the client-id and the appName in the relevant html files in local setup, mentioned here (https://github.com/AdobeDocs/embed-sdk-samples/blob/main/code-samples/cc-everywhere/v4-sample/sample.md#step-1-clone-the-sample).What am I missing here? Please helpBest,Selva
When I uploaded the picture, I found that the picture could be uploaded to base64 or url through createWithAsset. I thought whether the video could be uploaded to base64 after local upload, because I failed to upload the video when testing Alibaba Cloud memory, so I wanted to do a test by local upload.
Hello everyone,I'm using the Adobe Express Embed SDK v4 to build a web app that lets users create artwork and export it back to the app. Before exporting, the SDK prompts the user to log in, which triggers a popup or redirects through an iframe, handling the login process via the IMS API and storing the session in the browser.The challenge I'm facing is logging out users once they finish using the app, allowing the next person to log in. Since the login is managed by the popup (and not directly by my domain), I can't access or clear the session data saved in cookies or local storage by the IMS API.This disrupts my workflow, and I'm looking for a solution. I considered using OAuth 2.0 with a manual login and logout button, but the Adobe Express Embed SDK manages login internally and doesn't require OAuth 2.0 since it uses API credentials.Any suggestions or ideas would be greatly appreciated. Thanks!
Just recently started getting this error on attempting to load the editor with our own media on startup: INVALID_PSD_URL: Provided asset does not have the correct Photoshop Document Error: Provided asset does not have the correct Photoshop Document The integration has been working fine for months. I don't see any updates in the changelog that would break this. The editor works fine when started without any media.I am using a URL to load the media into the editor.
Hello Team,I would like to know why only 5 domains can be allowed against an API KEY.lets say ,Im having an application with the following domains.USapp.myapp.commyapp.company.comINapp.myapp.inmyapp.company.inSAapp.myapp.samyapp.company.sa...more dc on the same pattern.what would be the recommended way to map adobe embed sdk to the application.Looking at what I have in hand ,I can map 2 dc's to a single API KEY & submit for review & continue.Thank You
I urgently need help on this.Our embeded SDK implementaiton was finished and published on the https://mailboxx.appMy app review was also approved and everything was working perfectly. However, I started getting the Adboe Express is not available Error on my production. The credentails are not changed
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
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.