Unlock the full value of DC Web with our global community.
Recently active
I am using standard python code (with AWS adobe API) to extract text and tables. My pdf is about 19MB (much lessr than the limit specified. I am getting timeout. Can you please help? INFO:adobe.pdfservices.operation.pdfops.extract_pdf_operation:All validations successfully done. Beginning ExtractPDF operation executionERROR:root:Exception encountered while executing operationTraceback (most recent call last):File "C:\Users\milin\Anaconda3\envs\nlp_dev38\lib\site-packages\urllib3\connectionpool.py", line 699, in urlopenhttplib_response = self._make_request(File "C:\Users\milin\Anaconda3\envs\nlp_dev38\lib\site-packages\urllib3\connectionpool.py", line 394, in _make_requestconn.request(method, url, **httplib_request_kw)File "C:\Users\milin\Anaconda3\envs\nlp_dev38\lib\site-packages\urllib3\connection.py", line 234, in requestsuper(HTTPConnection, self).request(method, url, body=body, headers=headers)File "C:\Users\milin\Anaconda3\envs\nlp_dev38\lib\http\client.py", line 1256,
502 BADGATEWAY calling Generate document from Word template (Preview) from Power Automate& Error with Word Plugin Is anyone else experiencing this issue? Is this a know issue?Status page shows no error.Adobe System StatusThanks
After converting the PDF to docx word using adobe PDF service API. On opening the word document, it is giving me below popup. How to get rid of this pop up?POP UP MessageWord found unreadable content in test.docx. Do you want to recover the contents of this document? If you trust the source of this document, click Yes. Python Codeimport requestsurl = "https://cpf-ue1.adobe.io/ops/id/pT3OLAc5dCEFZesBkzpIxl6CcZNOh8ca"payload={}headers = { 'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsIng1dSI6Imltc19uYTEta2V5LTEuY2VyIn0.eyJpZCI6IjE2NDA1ODA4NDkxNDNfNTdjZjBjYzEtNzU0NS00MDEyLTg4NTUtYzdhMjMyNTMwMDBjX3VlMSIsInR5cGUiOiJhY2Nlc3NfdG9rZW4iLCJjbGllbnRfaWQiOiJhNWFhMjY0Y2JlMGM0OTE3ODI2MmZhZmQ5YjgxMTU2NyIsInVzZXJfaWQiOiIxRjYzN0REMTYxQzQ0MEVBMEE0OTVDRkJAdGVjaGFjY3QuYWRvYmUuY29tIiwiYXMiOiJpbXMtbmExIiwiYWFfaWQiOiIxRjYzN0REMTYxQzQ0MEVBMEE0OTVDRkJAdGVjaGFjY3QuYWRvYmUuY29tIiwiZmciOiJXQjNZTkRUV0hMRTdJN1dDRk9SRlJIUUFMTT09PT09PSIsIm1vaSI6ImE5OTQzNDc2IiwiZXhwaXJlc19pbiI6Ijg2NDAwMDAwIiwic2NvcGUiOiJvcG
We have PDF Service API and Total quota shows 1000 UNITS. Does it mean that we have only 1000 Unit to use? What happens after that? Why there is quote for paid account?
We are looking for share icon in the tools menu with PDF Embed API.Is that possible ?
Hi there, I work for SaaS vendor and we are evaluating using Adobe Document Generation APIs. Is there examples of templates that use date formatting? What is the syntax for using the date time functions https://docs.jsonata.org/date-time-functions in a template (some examples would be great). More generally, there are very few examples of using JSONata expressions in templates. It would help greatly if there were more of these. ThanksMichael
I know this is a common problem, but after days I finally have reached the end of the Merging Document Generation API (from docx to pdf with JSON fields), now using Postman (than I want to use with my database).I obtain a octect-stream text, with 2 "Boundaries" parts. The second one I think is the final PDF.How do you trasform the text into PDF? Do I need to exclude/delete the first part with JSON data?And why the Base64Decode is not working with this?Finally, how can I have more information, and decide if to buy or not Adobe services, if documentation is so poor?
We are using the PDF Services document generation API (https://developer.adobe.com/document-services/docs/overview/pdf-services-api/howtos/api-usage/) for generating documents. When we upload a template using the POST https://pdf-services.adobe.io/assets API call, the asset works fine for document generation for a few days. However, after a few days, the API call to generate a document starts producing the following error: { "error": { "code": "NOT_FOUND", "message": "Asset Not Found." }} At that point, we have to upload a new template and update the asset ID used to generate the document. How can we make it so the template asset does not expire and we can continue to generate documents from the same template?
At the very bottom of the pdf sample file, there's a subtitle: "Bodea Inc. You're trusted partner since 2008""You're" should be "Your". I saw this on this page: https://documentservices.adobe.com/view-sdk-demo/index.html#/view/IN_LINE/Bodea%20Brochure.pdf
Hello, I would like to convert PDF to DOCX with PDF Services Node.js SDK. It works fine but DOCX is missing font.When I convert PDF to DOCX with Adobe Acrobat Pro DC desktop application, the font is included. But if I do it with web interface https://acrobat.adobe.com/link/acrobat/pdf-to-word or with the API, then the font is missing, respectively is replaced from Shadows Into to Calibri, see the attachment.I found FAQ for Document Services PDF Services API https://community.adobe.com/t5/document-services-apis-discussions/faq-for-document-services-pdf-services-api/m-p/10726197 where it is written:How does PDF Services API support Custom fonts?If a custom client font is detected during the PDF operation and is also available from our cloud service, then it will be used in the corresponding output file. The list of available fonts for Create or Export operations is listed below. If the font is not available, then the PDF Services API will substitute the
Been using the pdf extract & pdf document creation for about a year (node.js). The AWS docs are a hodge podge of advice. At the moment, I have set up the license for sharing in the AWS license manager and trying to connect my dev and prod accounts with AWS organizations which is having some difficulty finding each other. Prior to this attempt at connection, for the prod account, I set up a new API and set of credentials under my Adobe account in the Adobe console but when I try to run a pdf extract script, I immediately get the warning "quota exceeded". Thanks in advance.
Just a quick tip. I'm pretty experienced with Node, but only slowly getting into ESM/import style syntax. As more and more NPM packages start requiring it, I'm finding myself using it more and more as - well, I'm forced to. So as just a general FYI, our Node SDK can be imported just fine: import PDFServicesSdk from '@adobe/pdfservices-node-sdk'; No big deal and this is expected, but as it worried me a bit until I saw it worked, I wanted to share with the rest of yall.
Here is the code. I have tried several other PDF urls and none work except for the sample Adobe ones. I am 100% sure I am overthinking and there is a very basic step which I am missing, but can't figure it out. <div id="adobe-dc-view"></div> <script src="https://documentcloud.adobe.com/view-sdk/main.js"></script> <script type="text/javascript"> document.addEventListener("adobe_dc_view_sdk.ready", function(){ var adobeDCView = new AdobeDC.View({clientId: "<YOUR_CLIENT_ID>", divId: "adobe-dc-view"}); adobeDCView.previewFile({ content:{location: {url: "https://www.nature.com/articles/s41586-021-04116-8.pdf"}}, metaData:{fileName: "s41586-021-04116-8.pdf"} }, {}); }); </script>I have seen different posts similar to this, but none of the answers were clear/helpful in my case.
I copied some script and added my client ID, PDF file location, and name. It almost works but gets an error message that says "File Preview Error" - I found some people with the same issue and tried their fix which was to remove https, or remove https://drlesleyphillips.com. ( also noticed they didnt have <> around their client ID so I tried removing that. None of these solutions worked. I believe there is something wrong with the code but I just do not know what it is? <div id="adobe-dc-view"></div><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: "<e3826d972d5e48c6a8b1d598039f1cda>", divId: "adobe-dc-view"});adobeDCView.previewFile({content: {location: {url: "https://drlesleyphillips.com/wp-content/uploads/Dr-Lesleys-Chakras-and-Intuition-Map.pdf"}},metaDa
Hi there, I'm trying to dynamically insert images into a document in a repeating section. For some reason this isn't working for me at all and I was hoping I could get some help. I've tried using the image urls as well as base 64 encoding. My document has the following: {% repeating-section backup[number > 0] %} {{name}}{% end-section %} With the alt text of the image:{"location-path": "path","image-props": {"alt-text": "Backup Load"}} And the json is as follows:{ "paymentType": "cash", "client": { "name": "Jade", "address": "Placeholder Address" }, "recommendation": { "label": "7.1 kWp Solar Panels + 7kWh Storage", "outputkWhYearOne": "56,739", "priceInclVATR": "250,000", "firstYearSavings": "20,123" }, "backup":[ {"name":"Electric Fence"
Hello, I'm looking for a way to expand the bookmark pane in the Embed API by default. Currently users must click the bookmarks icon from the left hand panel in order to see the bookmark list. -> I'm using the Full Window embed mode. I have specified 'showLeftHandPanel: true', but this only displays the bookmarks icon. I did not see any configuration in the documentation or demos to enable this functionality.
Can our company can use this API for Proof Of Concept? What precautions do we need to take care when we are doing Proof Of Concept, so it will not break license terms?
While running extract API for the following PDF I get BAD_PDF error.The PDF is correctly viewed on differen PDF viewers without any error.Pdf file:https://www.tuigroup.com/damfiles/default/tuigroup-15/en/investors/6_Reports-and-presentations/Reports/2021/TUI_GB21_EN_Annual-Report-_211207.pdf-60f85cc5cd787142dfaa5d6e26c35799.pdf Full traceback:2022-10-03 14:20:26,509 INFO extract_pdf_operation:129.execute - All validations successfully done. Beginning ExtractPDF operation execution Traceback (most recent call last): File "/home/user/.pyenv/versions/cai-backend/lib/python3.10/site-packages/adobe/pdfservices/operation/pdfops/extract_pdf_operation.py", line 134, in execute ExtractPDFAPI.download_and_save(location=location, context=execution_context, file_location=file_location) File "/home/user/.pyenv/versions/cai-backend/lib/python3.10/site-packages/adobe/pdfservices/operation/internal/service/extract_pdf_api.py", line 48, in download_and_save response = CPFApi.cpf_status
Hi everyone, I have an error where "Document annotations" are sometimes not loading when using:annotationManager.addAnnotations(annotations);In the console I can see an error Annotation Selector is not valid for given{id} Any suggestions would be very much appreciated.
Hello,I'm currently implementing the Embed API. Everything is working as expected but after the pdf is opened, the annotation toolbar disappears. During the loading proccess of the viewer you can see the toolbar, but after the document is opened it fully disappers.Nonetheless some annotation tools appear on right click or text selection, the toolbar on the left hand side is just gone. showAnnotationTools is set to true and the view is embedded in FULL_WINDOW mode, so it should be there normally. I would be very thankful for any suggestions.
We noticed that the enbeded api pdf no longer works on ipad (15.7 iOS) with Safari.We downloaded Chrome on that same tablet and it works fine.Tested with iPhone and Safari, Android phones and tablet and PC no issues found. We get the spinning weel for a few seconds and then the "File preview error" message. Any idear :-)? Regards,
hi, any trying to use this to achive a list of suggestions to appear in a table { "flaggedTokens": [ { "offset": 0, "type": "UnknownToken", "token": "Hollo", "suggestions": [ { "textly": "Hello" }, { "textly": "Hollow" } ] }, { "offset": 7, "type": "UnknownToken", "token": "wrld", "suggestions": [ { "textly": "world" } ] } ] }I have tried many options and currently table in my Word Document looks like this: but Im not getting the desired results.Customer wants a list of many Suggestions per line in table. And was hoping to use a list as they are numbered items. I have it working when 1 long field with all the Suggestionseg. 1) do this 2) do that 3) do those but these shouldnt each be on a separate line eg.1) do this2) do that3) do those any help would be greatly appreciated as spent few days on this now 😞
HTML to PDF conversion creates 2 pages from single page and displays in landscape format;top half of PDF and lower half of PDF. (2 PDF pages)Acrobat displys 2 seperate pages. I need PDF conversion to show single page PDF for single page and 2, 3, 4 page PDF's accordingly. I tried changing the settings in Acrobat: noI tried adjusting the page size settings in HTMLtoPDFconvert SDK: no Compression, Merge, and Combine will all uses extra tokens. There must be a better way.
HiI am new to azure logic app and was trying the Adobe PDF connector. I am trying to use the "Generate From Word Document" Action but I am not sure what do you need to pass in the Template File Content. Can we pass Bytes Array? Cannot find what you need to set here?Thanks for your helpYann
I am trying to use Adobe PDF Services API (U.S.) and able to find API end point and API key. Please let me know how can i get both of them? 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.