Unlock the full value of DC Web with our global community.
Recently active
Hi,Can you advise if developer accounts are throttled to allow only 2 PDF documents to be processed when using the export facility? I am finding that if I have 10 pdf files that I wish to export to an office format, only 2 will be undertaken and the third one will hang and timeout. If this is the case and only with a full account would I be able to process all 10 documents as a batch, that is fine, I am just unable to see any documentation that explains this. thanksG.
I need to convert PDF documents to DOCX as part of a solution for our clients. Initially I was planning on using the Document Services API, but the client doesn't allow us to send documents to third party services. Does Adobe have any software solution that can convert documents on a local server instead of converting in the cloud? I have looked into using Acrobat Pro together with the Acrobat SDK, but understand that the EULA does not allow for server-side installation.
I received notification that my certificate was about to expire. So, today I have created, new certs and key. However, whenever I try and use anything Adobe all I get back is the message UNAUTHORIZED_ENGINE_ACCESS.I am trying to use the PDFServicesSDK dll. No joy. This did work, once, maybe a year ago. No idea. Nothing else of any use to suggest what the problem is. I have updated items in the developer area but all I get it this message. I followed the link in the emails to update the certificate but it just took me to my projects list.Quite amazed that no one else in the world seems to have seen this message so I guess I am just lucky.If anyone has anything useful they can throw me, it would be appreciated.thanks.G.
PDF Embed SDK has changed with Full_Window implementation where PDF is incredibly slow to load. It used to load hundreds of pages immediately using URL, but now via network tab it is loading a bunch of images every time you scroll to a different part of the document. Also,there is a new "Loading" indicator here
I need to get in touch with sales, I tried months ago to no avail. I submitted a request again just not but pre-empting it by trying to ask the community. Maybe their emails were going to my spam? Maybe nobody works in sales at Adobe. My product is based on this API and we used to have it setup through AWS, when we went to switch from using my personal account to the company adobe team logins and they don't sell through AWS anymore this has become a big problem. Take my money!!
We recently launched enhanced external file support for Acrobat Services (details here: https://developer.adobe.com/document-services/docs/overview/pdf-services-api/howtos/pdf-external-storage-sol/), and I thought I'd share a quick example script. It makes use of Node.js and S3 to do the following: * Get a download URL for our asset, in this case, a PDF * Get an upload URL to save a result to 'foo2.docx' * Get an access token * Create an Export PDF job using the URLs from above * Poll the job * Let the user know when done You can find the source here: https://github.com/cfjedimaster/document-services-demos/blob/main/rest/external_test.mjs And here's the code. It's not terribly error proof, but enjoy. If you have any questions, let me know. It assumes environment variables for Adobe credentials and AWS credentials as well. import 'dotenv/config'; import { S3Client } from "@aws-sdk/client-s3"; import { getSignedUrl } from "@aws-sdk/s3-request-
Following the straightforward instructions in the Getting Started page. I successfully generated a bearer token. Now when I try to generate the upload pre-signed URI, like this: curl.exe --location -- request POST 'https://pdf-services.adobe.io/assests' --header 'X-API-Key: client_id_goes_here' --header 'Authorization: Bearer bearer_token_goes_here' --header 'Content-Type: application/json' --data-raw: '{ "mediaType":"application/pdf"}' I then get the Bad Request error. Any idea what I'm missing?
When viewing a pdf in Chrome that has a link, Upon clicking the link I see the pop up asking "Do you want to open this link", I click Open Link but the link does not open. It appears to work fine in FireFox. Is there a way to fix this in Chrome?
Hello, we are trying to merge several documents in one PDF with Power Automate, however we noticed there is a limit of 20 documents to be merged.Is there a way to overcome this limit?The flow collect all files' contents in an array by the Apply to each action and then gives that as input to the Merge PDFs action. Thanks in advance for the support
I added the demo script below to my site with my client ID and it pulls in the pdf sample file as expected (URL in red). I then added my own pfd URL and it fails to work. I get a "File preview not available, please reload to try again" error. Here's the pdf I was trying to display: https://medpower.com/s/himycasstatesubmissionfilecreation.pdfDo I have to save the source PDF files in a special way or on a special website before I can pull them in using the PDF Embed API? I don't understand why the demo URL works, but mine does not. Any help you can provide is greatly apprecaited! FYI, here's the code I used that substitutes our pdf URL:<div id="adobe-dc-view" style="width: 800px;"></div><p><script src="https://documentservices.adobe.com/view-sdk/viewer.js"></script><script type="text/javascript">document.addEventListener("adobe_dc_view_sdk.ready", function(){var adobeDCView = new AdobeDC.View({clientId: "XXXXXXXX
when tables in pdf are split across multiple pages, tables are not getting extracted in excel folders.
Hi, I am using the PDF Embed API to show PDFs in the browser. It works most of the time, but for some PDF files, it doesn't show anything. For example, this file shows correctly in the browser viewer, as well as in Adobe Acrobat Reader when I download the file and open it on my computer. However, using the PDF Embed API, the pages don't show any content as seen in the screenshot. When loading the file, the console outputs this log: [Warning] [mobx.array] Attempt to read an array index (0) that is out of bounds (0). Please check length first. Out of bound indices will not be tracked by MobX (dc-mobx.js, line 16) [Log] {} (index.js, line 347) [Log] [] (0) (index.js, line 355) [Log] @17199539m/dc-rendition-provider/2.25.2_4.122.0/AJS/wasm_acrobat.js:1:195 (rendition.js, line 2) wasm-stub@[wasm code] <?>.wasm-function[122]@[wasm code] <?>.wasm-function[254]@[wasm code] <?>.wasm-function[2047]@[wasm code] <?>.wasm-function[869]@[wasm code] &l
Hi 🙂I use API Adobe to generate PDF from docx.In local environnement it is working fine. await documentMergeOperation .execute(executionContext) When I deploy the nodejs application on the Internet, I have this error2023-09-02 11:42:22 error [undefined] SID[undefined] unhandledRejection: process.send is not a function TypeError: process.send is not a function at Object.send (/home/jivciei/adusuki/node_modules/log4js/lib/clustering.js:98:15) at Logger._log (/home/jivciei/adusuki/node_modules/log4js/lib/logger.js:106:16) at Logger.log (/home/jivciei/adusuki/node_modules/log4js/lib/logger.js:89:12) at Logger.<computed> [as info] (/home/jivciei/adusuki/node_modules/log4js/lib/logger.js:140:10) at DocumentMergeOperation.execute (/home/jivciei/adusuki/node_modules/@adobe/pdfservices-node-sdk/src/operation/document-merge-operation.js:136:10) at post_paiement_virement_save (/home/jivciei/adusuki/controllers/adhesionController.js:1384:4) at
I am building a power automate flow to take information submitted in a power app and create a pdf that can be sent for signatures. I keep getting Invalid Parameter errors when I get to the "Generate document from Word template" action. I have converted practically all my JSON to strings. After I parse the JSON in the flow, it all looks fine (see screenshot below). I use a compose action before the "Generate document from Word template" action because if I manually build the merge data, my nested data is not available. I am not finding much of this error so I'm not sure where to look to find where it is failing. Any help would be greatly appreciated.
Hi, First time using Adobe connector in Power Automate, I am trying to convert PDF to Word. I am getting a BadGateway error after waiting for 11 minutes. Any idea?
Hi, I am planning on using PDF Extract for a commercial project, however, my customer is worried about sending their PDFs through API to a third party. Can you please tell me in what country the servers are geographically, and also if there is any on-premise solution to avoid sending sensible PDFs over the internet? Thanks.
Hello, I am getting SSLCertVerificationError while running the sample code given in the below link:https://developer.adobe.com/document-services/docs/overview/pdf-extract-api/quickstarts/python/#step-three-creating-the-application Is there an option (in "pdfservices-sdk" package) to disable the disable SSL certificate verification temporarily? Basically, I am looking for an option similar to verify=False in requests library:response = requests.get('https://example.com ', verify=False) Thanks!
I am using the free 'trial' of PDF Services API in my project and I was hoping to add a usage subcommand to my CLI for bells and whistles, but I haven't found any way to fetch the number of used doc transactions/total left this month or anything like that. For me, it's not an essential feature as my tool doesn't process many documents, but it is still a very useful feature.
I signed up for Adobe PDF Exctract API and have a trial version client ID and cllient secret Keys.Is the trial version good upto 500 documents per month ? Will it reset the 500 document quota for next month automatically? Or will these API keys stop working after a month?
Ever since the Beta version self installed I have had trouble with standard verion of PS - I cannot bring in any images. I get the "Could not complete your request because of a program error". When I tap on the learn how to fix it tells me to roll back to a previous version which I did and it seemed to work for a while but then when I treid to update to the current version I am back to square one. I am completely shut down without being able to use PS now. PLEASE....any help out there. I ran the graphics compatibility and it says I am - I have a newer computer with loads of power/memory etc...
Hello, I just discovered the Photoshop api. Are any sample codes for calling the photoshop api with javascript? Just trying to get my head round this. Any assistance is much appreciated. Thanks.
Earlier this week I shared a blog post and summary of recent updates. Due to a miscommunication, some things were announced that were not quite ready yet. I apologize strongly for that. The blog post is updated (https://blog.developer.adobe.com/acrobat-services-updates-for-august-2023-3040fe7ae5fc) and should be correct now. TLDR: * Electronic Seal updates * External file support
Hello, I'm facing some issues with rendering pdfs on mobile view/browsers, hoping to conult if there is any workaround. What I didI cloned from the React Sample here: https://github.com/adobe/pdf-embed-api-samples/tree/master/More%20Samples/React%20Samples Using my own sample pdf and importing it locally in the code, I got it embed mode: SIZED_CONTAINER to work on a responsive browser view in Chrome. (See attached image) Problems EncounteredHowever, when I switch to a mobile view on the developer's console, the Embed API broke with an error 'PREVIEW_RENDERING_FAILED' (See attached image) I thought it might a chrome thing that it failed, so I loaded an emulator on Android Studio to check if I could replicate the same error, and it did. (See attached video link)https://youtube.com/shorts/qoolVAywRxQ On another note, I've also run into a perculiar behavior when I change to a mobile dimension and refresh my page while I'm in the fullscreen mode. Up
The code I am using to generate an access token can be found here. It is written in Rust, but should be easy enough to follow for non-rustaceans here. The problem is that Adobe isn't returning a standard response, and also they are returning an error "invalid_target_scope" with description: "None of the requested scopes are both on the client and the binding.". I am planning on using the Adobe PDF extract API, but I am currently stuck. NOTE: I am using the "openid, AdobeID and DCAPI" scopes only.
Is there anything I can do to resolve this issue? Thank you.
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.