Welcome to the Adobe Developer Community! Connect with peers to ask questions and share best practices.
Recently active
If creating PDF extension that is erasing certain information from the PDF documents - what kind of platform would you recommend using?
Hello there, I am trying to extract the tables from the PDF. Currently, I am using the PDF service python SDK. But, I am facing a problem in extraction results. The extracted results looks like encoded or corrupted. I have attached a screenshot of extracted table below. Additionally, Following JSON sample highlights the issue I stuck on.{"version": {"json_export": "218", "page_segmentation": "55", "schema": "1.1.0", "structure": "1.1136.0", "table_structure": "5"}, "extended_metadata": {"ID_instance": "44 DC 8C 73 ED BB B2 11 0A 00 0D B1 8B 55 A7 7F ", "ID_permanent": "AD 6A 2D 61 E0 97 2E 6F E3 26 3A 24 3C CA F3 20 ", "has_acroform": false, "has_embedded_files": false, "is_XFA": false, "is_certified": false, "is_encrypted": false, "is_digitally_signed": false, "language": "en", "page_count": 9, "pdf_version": "1.6", "pdfa_compliance_level": "", "pdfua_compliance_level": ""}, "elements": [{"Bounds": [30.080001831054688, 36.42799377441406, 47.07200622558594, 477.36900329589844], "Font":
I followed this guide: https://developer.adobe.com/commerce/extensibility/events/ Events are visible in the event_data table in the Adobe Commerce MySQL database. However, they do not show up in the Developer Console in Debug Tracing or Event Browser (Journaling). Is there anybody that can help me?
I am trying to extract both text and tables from PDF document using python sdk. But, extracted data might be corrupted or encoded differently in my case. I have added sample o/p below. Do you have any idea, how to fix such issues during extraction. I have tested similar document in adobe pdf to excel service, which is working as expected. Thank you.JSON o/p sample:{"Bounds": [52.51200866699219, 36.227996826171875, 72.38600158691406, 145.63192749023438], "Font": {"alt_family_name": "Arial Narrow", "embedded": false, "encoding": "WinAnsiEncoding", "family_name": "Arial Narrow", "font_type": "TrueType", "italic": false, "monospaced": false, "name": "ArialNarrow", "subset": false, "weight": 400}, "HasClip": false, "Lang": "en", "ObjectID": 190, "Page": 0, "Path": "//Document/P[3]", "Rotation": 90.0, "Text": "New Growth Horizon ", "TextSize": 14.0, "attributes": {"LineHeight": 16.75, "SpaceAfter": 5.5}}, {"Bounds": [54.444000244140625, 530.0039978027344, 71.43600463867188, 758.7480316162109
I'm migrating from Adobe Analytics API v1.4 to v2.0 and need help finding the equivalent endpoint for ReportSuite.SaveEvars.Current Implementation (v1.4):Using ReportSuite.SaveEvars endpointPart of the Report Suite APIIssue:In v2.0's Swagger documentation, I cannot find the Report Suite API.While there is a Report Suite API mentioned in the v2.0 endpoint guide, it only contains GET methods - no PUT, POST, or PATCH endpoints are available.Question: What is the equivalent endpoint in Adobe Analytics API 2.0 for saving eVars that replaces the v1.4 ReportSuite.SaveEvars functionality? What I've Tried:Checked the v2.0 Swagger documentationReviewed the endpoint guide for Report Suite API in v2.0Unable to find any equivalent write operations for eVars Documentation References:https://adobedocs.github.io/analytics-1.4-apis/https://adobedocs.github.io/analytics-2.0-apis/
Hi, I have created a dynamic board to pull in Workfront actions and update the action status from the board. All working fine with my custom status. When these actions are eventually converted into projects the status is managed from the project status (again working fine). As all projects start with the 'New' status that means the action goes back to the New column on the board. Which is slightly annoying but not sure how i can keep the action as in progress and the column it was prior to the project creation? More importantly if the project status is updated eg from charter to in progress the original action does not move on the board. The action is now 'in progress' but still in the 'New' column. Any ideas, how the action status can move based on the resolving project status? Thank You
Greetings, We are reviewing the "Insights" tool in the assets section and it has a very useful sub-tool for us which is the counting of files with their extension. I would like to know if there is a similar tool that counts the number of files by their extension but based on a specific path. For example, to count how many of these files exist under a path like "/content/dam/example". Thank you very much and have a nice day
Hi, Facing an issue using the AEM (v 6.5.13) GraphQL endpoint with the below error on the content fragment preview. The endpoint is configured but it seems doesn't get registered and also throws the error below. Any pointers will be helpful. RegardsNikhil
Hi, using magento security scan even if these patches are applied i can't validate the service. i use magento 237p3. Can you guys manage to help me? As I don't understand if I am still at risk.Thanks
In the daily DMA data feed export the Chinese, Japanese and Korean alphabet are not well represented. Example:HIT_KEYFILE_NAMEPAGE_URLREFERRERFILE_DOWNLOAD_URL3689937870631370752461823606694500810817182612182024-06-13 training-基于STM32G4电机控制基础篇.pdfAlthough those alphabets are well tracked in Adobe Analytics and in Adobe workspace the values are correct: Could you please help me to fix it?Thanks
I didn't find any technical documentation about Fluidic Player, I would like to know if there is an SDK for using the player in a mobile application, be it native, React Native or Flutter?
Hello everyone,I’m attempting to use the animateFromAudio() Quick Action in the Adobe Express Embed SDK (v4). According to the documentation, this method should accept an audio file as input, but I keep getting the following error when I pass type: "audio" in my docConfig.asset:INVALID_PARAMETERS: QuickActionDesignConfig/docConfig/asset/typemust be equal to one of the allowed values(async () => {const hostInfo = {clientId: "MY_CLIENT_ID",appName: "AudioToAnimation",};const configParams = {loginMode: "delayed",};const { quickAction } = await window.CCEverywhere.initialize(hostInfo, configParams);// base64Audio is an MP3/WAV file read as base64 from a FileReaderquickAction.animateFromAudio({asset: {data: base64Audio,dataType: "base64",type: "audio", // Triggers INVALID_PARAMETERS error}},{callbacks: {onError: (err) => console.error("Error:", err),}});})(); looks like the demo is showing the wrong type too! When type is set to "audio", the SDK returns “INVALID_PARAMETERS”
We have both classic and Touch UI implementations of AEM, so I have some experience dealing with these issues in the classic environment. Right now, we are trying to find the best approach with Touch UI and Webpack. We have a frontend that is a custom framework along with custom components (that need their own JS and maybe CSS). I'd appreciate any help for the following: For third-party jQuery-dependent vendor JavaScript (not installed through Node), we have tried adding them in Webpack, but then we encounter the standard problem of making them available in the global namespace for custom component JS to access. For example, vendor JS like DataTables and Bootstrap-Select have globally available methods $().DataTable() or $().selectpicker() that are not available when added in Webpack. This appears to be by design with Webpack.How should vendor JS be loaded, especially JS that builds on jQuery?Currently, clientlib-site JS gets loaded at the bottom of the page. Custom component clie
Is it possible to retrieve the deployed code after using 'aio app deploy' if I have lost the local files?"
I am getting error when i install the magento 2.4.7 in xampp, after some correction i successfully installed it. I made update in app\etc\env.php and index.php Is there any problem in future for update magento version. app\etc\env.php 'system' => [ 'default' => [ 'web' => [ 'unsecure' => [ 'base_media_url' => '{{secure_base_url}}pub/media/', 'base_static_url' => '{{secure_base_url}}pub/static/' ], 'secure' => [ 'base_media_url' => '{{secure_base_url}}pub/media/', 'base_static_url' => '{{secure_base_url}}pub/static/' ] ] ] ],index.php //require __DIR__ . '/../app/bootstrap.php'; require __DIR__ . '/app/bootstrap.php';
We're in the process of moving our Adobe Project from JWT to OAuth, and have generated the new Oauth creds, along with updating the connector-umpai.yml file as advised in the GitHub notes. However, we're getting the error:umapi_client.error.RequestError: Request Error (401): {"lastPage":false,"result":"error.organization.invalid_id","message":"UNAUTHORIZED"}2025-01-14 16:45:34 5708 INFO main - ========== End Run (User Sync version: 2.11.0) (TEST MODE) (Total time: 0:00:01) We've confirmed the ID in the connector-umapi is correct, and this same ID works fine on the old JWT. Below is the setup of the YML file (with information redacted)authentication_method: oauth enterprise: client_id: client_secret: org_id: Can you advise what we might be missing here?Thanks.
Hi, I am System administrator for my Org. I am trying to grant developer access to console, but developer is not able to login to console successfully. Everytime he sees User login only Can you please point correct Products to assign from adminconsole to grant developer access.
Hi, we're experimenting with the universal editor with AEM on prem. Everything works fine but the asset picker doesn't. I think it's trying to access the AEM cloud asset picker instead of our local instance.Has anyone else encountered this and is there a fix?
How to download latest open source magento, not from GitHub, manual download.
I need to prefer manual download instead of composer or something else.Where i can download the latest version of magento 2.4.7.
Hi, We are looking to utilise the Adobe Embed API, unfortunately we have many domains so I have taken up the task of creating a new project for each domain. I have so far created 20 projects with Adobe Embed API credentials for each.I have just attempted to add the 21st project and corresponding allowed domain but I get the spinner to save and then the field is emptied, with no error. I'm therefore unable to proceed. Any thoughts on cause? I wonder if there is a maximum number of projects for each product type? ThanksT
Hi,Not sure if this is the correct forum for this question but here goes. My current employer as a set of reports built in SSRS that save a PDF version in a folder every 5 to 15 mins a day (a total of 30k PDF's a day) and we are having some major issues with the report server being over loaded. What I want to do is take one of the PDF's as a template for each report and populate it via SSIS which will be a lot quicker, as any one done anything like this and if so where would I start.
- My client is having their assets with adobe- We have another application which need to use those assets- We are planing to integrate Asset selector as mentioned in the doc https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/assets/manage/as...While doing POC, I like to check the working of the adobe assets selector locally. As the client needs to submit the support request for getting the imsClientId, imsScope and redirectUrl for the intergration. In the support request they need Domain names where the non-Adobe web application is hosted, can we use localhost as hosted domain in the support request for getting the credentials as I need to check with my localhost that connect aem cloud asset selector?Also I like to know how development and debugging are done for asset selector if they don't support connecting localhost?
We are deploying custom theme through a frontend pipeline and when creating the form or updating existing form properties we are not able to see the deployed theme as an option in the selection. The only default option can be seen as canvas theme. This is happening very recently in last couple of weeks(before that it was working fine and custom theme was available for selection). In the themes repository there are only styling changes that are deployed and no other changes. If someone is facing a similar issue please provide some input how to resolve it?
Hello community, I can't send a recurring delivery (recurring only, because I have no problem sending a continuous delivery), here is the message I get: SOP-330011 Error while executing the 'AppendDeliveryPart' method of the 'nms:delivery' service. Do you have any idea where this could come from?Thanks for your help, Sincerely,
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.