Unlock the full value of DC Web with our global community.
Recently active
Does Adobe PDF Services (Preview) Power Automate Connector support more than 100MB file size conversion from Word/Excel/PPT to PDF?
Title says it all. If you're a WordPress developer/user/admin/etc, you can now make use of the PDF Embed API via an incredibly simple WordPress plugin. Details may be found here: https://blog.developer.adobe.com/adobe-pdf-embed-api-now-available-as-a-wordpress-plugin-488c4f5e1916
I am using the Document Generation tool with a text field that contains line breaks, the json file aslo contains line breaks but when the word document is being generated the linr breaks are being removed and the text is all in one line. How do I kee the line breaks?The json is "ROB_Special_Conditions__c" : "Test 1 \n Test 2 \n Test 3 \Test 4"The output is Special conditions:Test 1 Test 2 Test 3 Test 4
Hello, I am facing an error when generating document using the API Adobe document generation in WORD.I haven't reach the API document limit per month as I start to use it. And you can find the document in the attachment. Thanks in advance for any insights!
Can you tell me what version of PDFs are supported by the APIs? Thanks, Jeff
Hello, Is there a way to get a refresh token for the Document Services API? Currently, access tokens expire every 24 hours, so need to generate a new one every day.(Basically the same as a this question from 2 years ago, but that got no replies so thought I'd make a new post!)Thank you!
Hi Team, I am exploring the free 'trial' version of PDF Services API. Uploaded many PDFs to understand the Extract PDF API functionality. Please confirm me whether the uploaded PDFs should be stored (temporary or permanent) anywhere in Adobe servers?If yes, please share the path of the storage location.If it is not stored permanently, how it will be processing like memory or cache? And also how we know the number of documents uploaded in a month because it's limited for trial version. Thanks
Hi all, I have been using the PDF Embed API on my website for a while now and it has been working perfectly until this past week. Here is a quick overview of my usecase so that you can better understand my problem. 1. I generate a new PDF file from a PDF template file on my Python backend via a few different open source PDF manipulation libraries.2. The Python libraries allow me to fill in the PDF template file fields with some data. (The PDF template file is a an acrobat form)3. After this my client side application loads the PDF embed SDK and renders the newly generated PDF form which allows users to continue editing the form fields. This process has been working for me for several months and just this past week the PDF Embed SDK started throwing a new error. The error is being thrown from a Web Assembly file and is something along the lines of stating that the file is corrupt. The file loads fine into the PDF Embed iFrame but the form fields are no longer visible nor
Hi all,I have been trying to reach out to Developer Sales for more than a month now. Our company is currently developing an application that requires the utilization of Adobe PDF Services API .NET SDK for searching and indexing use cases. Currently, we are using the 500 transactions/month free tier because the said application is still in development, yet we need to get the enterprise pricing so we can publish it to Production. We intended to use this application for internal only. Our company processes an average of 3-5 million documents per month.I already submitted the contact form, yet, no response. I keep sending the form once a week. I even tried reaching out to an authorized reseller yet they offered me an Adobe Acrobat Pro license. The same was offered to me when I reached out to a Sales Agent in Adobe Chat.Can anyone help me? I understand that Adobe PDF Services API Enterprise pricing can only be obtained via direct purchase from Adobe (ETLA).
Hi all, our Power Automate flows still use the "old" JWT credentials. I was trying to find a way how to upgrade/migrate/transfer them to the Client ID/Client Secret authentication method. Unforatunately, I did not find any suitable documentation on this. The only documentation I was able to find includes hyperlinks to the developer area, where I can create new projects. But that's not what I need. I don't have any projects. I have a bunch of Power Automate flows, which need to be updated to use the new authentication mehtod.Means: how can I create a new Client ID/Client Secret pair baseed on the JWT creds of our paid subscription? Any hint is much appreciated.
Quite a few months ago I created a Power Automate flow which does the following:1. Query Sharepoint site for docx files2. Convert each docx file to pdf 3. Store the content of the converted pdf file to an array variable4. Merge pdfs in the array variable and save as a new file Since being built, this flow has worked 100% of the time. However, it has been failing since last week and this is the error:I have verified that the content of the files are not the issue and all of the files are being converted to PDF from docx, it is only the Merge PDF action that is failing. Has anyone seen this before? I checked Adobe's site to see if there were service issues and none were listed.Any help would be greatly appreciated!
I have created two Power Automate flows, which technically merge up to 15 PDF files into a single PDF file. This flows runs daily. Most of the flows runs are successful, but every now and then, I receive the following error message: Code: 400Message: "The response is not in a JSON format."innerError: "HTTP Status 400 – Bad Request" I checked the involved PDF files (the files that should be merged) and there appears to be no issue with those files. I can open all of them and the same is true for the account used to execute the flow.I also checked the input used to feed the "Merge PDF" activity and I did not see an error or issues. Based on the rror message, I would assume something went wrong in the internal communication of the "Merge PDF" activity and the Adobe Servers, but I neeed to understand, what exactly went wrong so avoid this awkward error.Anny ideas or hints are much appreciated
Hello Everyone,I am getting this error message" File preview not availableThis application domain (https://materioa.netlify.app) is not authorized to use the provided PDF Embed API Client ID. " I have registeredmaterioa.netlify.app still it says it isn't And the console doesn't allow to write https://materioa.netlify.app on writing so results in an invalid domain name error
Hi everyone, Icannot run example code, getting this error.Can anyone tell me what an issue is? thanks ERROR:root:Exception encountered while executing operationTraceback (most recent call last):File "C:\Users\iaskarov\AppData\Local\Programs\Python\Python38\lib\site-packages\adobe\pdfservices\operation\internal\auth\service_principal_authenticator.py", line 68, in refresh_tokenresponse = http_client.process_request(http_request=http_request, success_status_codes=[HTTPStatus.OK],File "C:\Users\iaskarov\AppData\Local\Programs\Python\Python38\lib\site-packages\adobe\pdfservices\operation\internal\http\http_client.py", line 38, in process_requestif _handle_response_and_retry(response, success_status_codes,File "C:\Users\iaskarov\AppData\Local\Programs\Python\Python38\lib\site-packages\adobe\pdfservices\operation\internal\http\http_client.py", line 95, in _handle_response_and_retryshould_retry = ResponseUtil.handle_api_failures(response, request_key, is_ims_api)File "C:\Users\iaska
Hi team, As given the post https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-open-pdf-with-jump-to-particular-page-in-embed-adobe-api/td-p/384277 I used the view API .gotoLocation() method to navigate to a particular page when the pdf loaded in the page. Below is my code pdfFilePromise.then(adobeViewer => { console.log('file rendered') if (this.item.pageId) { console.log('opening page', this.item.pageId) adobeViewer.getAPIs().then((apis: any) => { apis.gotoLocation(this.item.pageId) .then(() => console.log("Page opening Success")) .catch((error: any) => console.log('Page opening error', error)); &nb
Hi,We used the PDF embed API to view the PDF on an angular page and used the gotLocation() method to move to a particuler page after PDF loaded. I used the below code as mentioned in the https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-open-pdf-with-jump-to-particular-page-in-embed-adobe-api/td-p/384277 pdfFilePromise.then(adobeViewer => { console.log('file rendered') if (this.item.pageId) { console.log('opening page', this.item.pageId) adobeViewer.getAPIs().then((apis: any) => { apis.gotoLocation(this.item.pageId) .then((data) => {console.log("Page opening Success"); console.log(data) }) .catch((error: any) => console.log('Page opening error', error)); }); } } The PDF loading successfully, but not going to the given page. Even I am getting "data" value as "true" in the then function of
I'm using adobe pdf embedded apiIs there a way to stop me from moving to the next page when I click when using the full screen?Because I have text fields in the pdf file and every time I click on this, I go to the next page and have a hard time
Since latest release today 13th of March using the pdfEmbedAPIaddAnnotationsInPDFhttps://developer.adobe.com/document-services/docs/overview/pdf-embed-api/howtos_comments/#addannotations-apifunction results in the annotation added twice on any given PDF, issue happening on all browsers and accross operating systems (tested on Macos, Linux, Windows)Every type of PDF is causing the issue and its consistent on both our application and the example repository provided by Adobe https://github.com/adobe/pdf-embed-api-samplesCode to replicate:- Pull the latest release of the PDFEmbed api sample- On https://github.com/adobe/pdf-embed-api-samples/blob/master/More%20Samples/React%20Samples/src/samples/LocalPDFFilePreview.js override this function to delete and all back all markers onFileUpload = event => { event.persist(); this.viewSDKClient.ready().then(() => { const files = event.target.files; if (files.length > 0 && this.isValidPDF(fi
How to add this API to my application? I want to be able to use token (like USB) to digitally sign documents on my web page, is this API available? How much does it cost?
I'm using Adobe.PDFServicesSDK 3.4.1 (C#) and got the following exception when trying to convert pptx to pdf Error response received for the request: An error occurred while sending the request. at Adobe.PDFServicesSDK.core.http.HttpClient.CreateHttpBaseResponse[T](RestResponse restResponse, HttpBaseRequest baseRequest) at Adobe.PDFServicesSDK.core.http.HttpClient.ExecuteRequestAsync[T](HttpBaseRequest baseRequest) at Adobe.PDFServicesSDK.core.storage.StorageAPI.<>c__DisplayClass0_0.<<CreateAssetUploadPreSignedURIs>b__0>d.MoveNext() --- End of stack trace from previous location where exception was thrown --- at Adobe.PDFServicesSDK.core.storage.StorageAPI.CreateAssetUploadPreSignedURIs(InternalExecutionContext context, List`1 assetUploadURIRequests, String requestID) at Adobe.PDFServicesSDK.core.service.StorageService.UploadAssets(InternalExecutionContext context, List`1 sourceFileRefList, String requestID) at Adobe.PDFServicesSDK.core.service.Cr
Hello, I am trying to compress the attached file and I am getting this error An Internal Server Error has occurred.; requestId=16d39334-ad3b-4c86-98b6-ed74b29884c1. I am using the example project
Hi, I get this error when testing the python quikstart pdf extract examplehttps://developer.adobe.com/document-services/docs/overview/pdf-extract-api/quickstarts/python/ adobe.pdfservices.operation.exception.exceptions.SdkException: description =Exception in fetching access token Any idea ?
I'm getting the below exception while trying this python snippet. ERROR:root:Exception encountered while executing operation Traceback (most recent call last): File "/home/rajesh/Documents/random/funenv/lib/python3.8/site-packages/adobe/pdfservices/operation/internal/auth/service_principal_authenticator.py", line 68, in refresh_token response = http_client.process_request(http_request=http_request, success_status_codes=[HTTPStatus.OK], File "/home/rajesh/Documents/random/funenv/lib/python3.8/site-packages/adobe/pdfservices/operation/internal/http/http_client.py", line 38, in process_request if _handle_response_and_retry(response, success_status_codes, File "/home/rajesh/Documents/random/funenv/lib/python3.8/site-packages/adobe/pdfservices/operation/internal/http/http_client.py", line 95, in _handle_response_and_retry should_retry = ResponseUtil.handle_api_failures(response, request_key, is_ims_api) File "/home/rajesh/Documents/random/funenv/lib/python3.8/site-p
I noticed in the documentation that we can use the API to merge up to 20 PDFs at a time. This appeared to be working up until recently; now, we are able to merge at most 15 documents at a time. Is this a change, a new issue, or are others noticing this? Bryan
When I made the example give me this error "Error response received for the request: No se puede enviar contenido textual con este tipo de verbo."} This is my code // Create an ExecutionContext using credentials and create a new operation instance.ExecutionContext executionContext = ExecutionContext.Create(credentials);CompressPDFOperation compressPDFOperation = CompressPDFOperation.CreateNew();// Set operation input from a source file.FileRef sourceFileRef = FileRef.CreateFromLocalFile(@"C:\\Users\\josec\\Desktop\\66ce2f72-9514-4aa8-ad65-41e98d360b37LotePolizas.pdf");compressPDFOperation.SetInput(sourceFileRef);// Build CompressPDF options from supported compression levels and set them into the operationCompressPDFOptions compressPDFOptions = CompressPDFOptions.CompressPDFOptionsBuilder().WithCompressionLevel(CompressionLevel.LOW).Build();compressPDFOperation.SetOptions(compressPDFOptions);// Execute the operation.FileRef result = compressPDFOperation.Execute(executionC
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.