Adobe Express Developers
Recently active
Can I use the embed SDK to setup the Express instance with specfic templates, assets, and brand details? Thanks, Michael
Hi, We've had a support query coming in: A teacher in California is able to launch the Express Embed modal and login, but his students are not. In our application, they have exactly the same permissions. It seems to be a limitation from their IT department. I imagine blocking the student accounts from using cookies with Embed.Email from him after some investigation - where "Create Video in Adobe Express" is the Embed workflow: We discovered that I (with teacher credentials) am able to access the "Create Video in Adobe Express" - however my students cannot. They are able to work with Express in its own browser tab at new.express.adobe.com, download files to their workstation, then upload to Stornaway. However the "Create Video in Adobe Express" is the most seamless option which I'd like them to use. As such, I think this is an issue on our end. So in summary the students can use the full version of Express in its own browser tab but not the Embed. The teacher can use
1. Is it possible to set output asset size for `editor.create()`? I see there is a type like `OutputAsset`, but cannot see where is it used? In general I gotta confess that it's very hard to navigate trought the API documentation, since some types are missed, sometimes I see some parameteres, and later on I can land on a similar page with types for it without it.2. Is is possible to set the backgaound transparency so it initially starts with it?3. Can I set filters just like I set search query ?
Context:I have an E-Commerce site where I have integrated Adobe Express into my product page.Customer's will have the ability to Create/Edit projects through Adobe Express.Question:Is it mandatory for the customer to create a free account in Adobe Express in order to access the Editor ?If Yes, are there any discussions/implementation in progress to bypass the login access for customers.Note: I know that whatever image a customer creates/edits will get saved into his own account.
Hi, I'm trying to create project with a video by using blob type. I used createWithAsset () method with bellow configuration but the edtior show an error message and then close. So if anyone know what I did wrong please let me know, any helps would be really appericated. Version of the app: v4Platform and OS version: Chrome 131.0.6778.205 (Official Build) (arm64)Basic steps to reproduce the problem: ... // data dataUrl is a url to the mp4 file // fetch the file const fetchedVideo = await fetch(dataUrl); // covert to blob const videoBlob = await fetchedVideo.blob(); //open and upload to adobe embeded with below config ccEverywhere.editor.createWithAsset( { canvasSize: 'Video', asset: { type: 'video', dataType: 'blob', data: videoBlob, }, }, { selectedCategory: 'media', allowedFileTypes: ['image/png', 'image/jpeg', 'video/mp4'], callbacks: { onPublish: (intent, publishParams) =&
this pops up every time I try to open SDK in a localhost environment. Yes - it is set in allowed domains, yes - it has https. Could you please take a look why is this happening?Also is there a delay time between - chanigng the allowed domaind and actually seeing the change? I did a change adding a domain I wanted to test in on the production env. It din't work out. It worked out like 15 hours later without any changes from my side. Is there a way to speed this up? Also2, I have a feeling it's very random sometimes in terms of whether it opens or not. Like it's I'm not in a mood now, vibes off - not working. And starts working an hour after (again no changes). Is it because it's not yet review?
Hey everyone, I know this issue has been raised before, but we’re running into the same roadblock with V4 of the SDK. Everything functions as expected in our local environment, but once deployed to our dev instance (dev.appos.io), we hit the error: “Adobe Express is Not Available” We’ve triple-checked our API key, verified that *.appos.io, dev.appos.io, www .appos.io are all listed in the approved domains, and ensured we’re accessing the SDK over a secure HTTPS connection. I’ve scoured the forums and other resources, tested every suggested fix I could find, and still haven’t found a solution. We need to get this resolved ASAP. Any insights from Adobe or the community would be greatly appreciated! Thanks in advance.
I'm receiving this message, "Adobe Express is not available, You do not have access to this service. Contact your IT administrator to gain access." when I try to performance an action, I'm trying to use the SDK in a Google extension, but I've created a local server with HTTPS in the same port that I put in my API credentials, I tried to create a new credential but none of this worked
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
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.