Unlock the full value of DC Web with our global community.
Recently active
Estoy generando un documento en el que me gustaría que sucediera lo siguiente:Tengo una hoja con diferentes campos:CódigoNombreReferencia Material_Por otro lado tengo un excell en el que he volcado toda esa información. Lo que me gustaría saber es si es posible que al introducir el código manualmente, el resto de datos se autocompleten (es decir que se vinculen los datos del excell en mi formulario,.
Hi,So i have been using your Document Generation API for a proof of concept and i am a little stuck... okay alot stuck... Now i read threw your posts and come to realize that you will not tell us how to extract the octet-stream from the poll response. Most of the posts state to use the sdk. I am looking at the javascript SDK and am not seeing the document generation SDK that is associated with document generation. Can i get a link for the javascript file... Not the github page but the actual filename =). Also for us old school php developers any good resources on multipart form parsing for your sdk. on another note does the cpf: location parameter is the only value multipartlabel not a big fan of the whole parsing thing...
I am able to do something with the JSONata 'try' editor which gets nothing rendered when I move the same code to MS Word. For example, this query--> $.foo.suggestions.suggestion results in the array I need, "["Hello","Hollow","world"]". I alos noted that "foo.suggestions.suggestion" without the prefix notation works. But when I add to MS Word using a repeating set like so, no results. {% repeating-section foo %} • {{ suggestions.suggestion }} {% end-section %} Welcome any insights.
Dear all, when I add single annotation , the annotation is display correctly, However, when I add a list of annotations, only 1 annotation is generated. There is seem to be no error message. Please advice. Thank you very much
Hi, I am using adobe api to extract text from pdfs, and for some pdf I am getting error from the api saying "Unable to extract content. Internal error". The detailed error message is as follows:error_code=oex.error_code, adobe.pdfservices.operation.exception.exceptions.ServiceApiException: description =ERROR - Unable to extract content. Internal error; requestTrackingId=MFzu5ApezIaRy8SG6xa58WdCHlsmNXyW; statusCode=500; errorCode=ERRORIf someone could help me understand this issue, it would be really helpful. Thanks.
Hi, My question is whether Adobe Embed API is HIPAA compliance or not? Thanks,
Looks like your flow's operation is hitting an action limit designed to protect the connector service being called. I see this error:{"error": {"code": "429","message": "Free trial quota exhausted. Please visit https://www.adobe.com/go/pdfservices_err_quota to learn how to get paid credentials. See https://www.adobe.com/go/powerautomate_payg_help to get help with setting up your paid credentials with Power Automate."}} I believe I have set this up for a paid account, however it can NOT be associated with MY account, it is for / with a business, and I am not sure how to get anyone at Adobe to assist, seems it is like this, all "contact" without "human" interacation.The link takes me to this page:https://developer.adobe.com/document-services/pricing/#AWSThen I go to Aamazon, AWS Marketplace:https://aws.amazon.com/marketplace/pp/prodview-wzykfz2grnbdkAdobe PDF Services API (U.S.)I click continue to subscribe.https://signin.aws.amazon.com/signin?redirect_uri=htt
Hi, When I am trying to use the API, I found sometimes it failed to extract the pdf and left an exception message like this: adobe.pdfservices.operation.exception.exceptions.SdkException: description =Request could not be completed. Possible cause attached!, requestTrackingId=(<class 'requests.exceptions.ConnectionError'>, ConnectionError(ProtocolError('Connection aborted.', timeout('The write operation timed out'))), <traceback object at 0x000001BB6E565FC0>)INFO:adobe.pdfservices.operation.pdfops.extract_pdf_operation:All validations successfully done. Beginning ExtractPDF operation execution My Internet connection is fine and I can browse other websites. So I think it is not the connection issue. But I cannot figure out why this issue happened frequently.
I have tried every possible combintion of domains when trying to us this API but it always fails with File preview not availableThis application domain (https://survey.riccagroup.com) is not authorized to use the provided PDF Embed API Client ID. The PDF preview will load for a split second and then this error comes up. The domains match and I have code right. Here is the code var adobeDCView = new AdobeDC.View({clientId: '28d6cc310c4d4d52b43dc1844572fe68', divId: 'adobe-dc-view'});adobeDCView.previewFile({ content:{ location: { url: url}}, metaData:{fileName: "MedSurvey Check "+id+".pdf"} }, { embedMode: "SIZED_CONTAINER" }); After it loads a call is made to https://viewlicense.adobe.io/viewsdklicense/jwt which then returns a 400 error and throws the error. It does not seem to matter where there PDF content is hosted, it just always throws a domain authorization error. I've tried multiple domain
Dear All, How can I attach a custom / predefined text string into certain postion of the pdf using embed pdf api. Thank you
Just a quick tip. Our docs explain how to use a custom timeout w/ the SDKs when calling services: https://developer.adobe.com/document-services/docs/overview/pdf-services-api/howtos/#custom-timeout-configuration. What we don't show is how to *use* that clientConfig object. It's really simple though - you pass it to your ExecutionContext creation call. Here's an example in Node, and it should be similar in your SDK of choice. const credentials = PDFServicesSdk.Credentials .serviceAccountCredentialsBuilder() .fromFile('pdftools-api-credentials.json') .build(); // set time outs to 2 minutes const clientConfig = PDFServicesSdk.ClientConfig .clientConfigBuilder() .withConnectTimeout(1200000) .withReadTimeout(1200000) .build(); // Create an ExecutionContext using credentials const executionContext = PDFServicesSdk.ExecutionContext.create(credentials, clientConfig); As an FYI, I've filed an issue internally to update our docs to mention this.
Hi folks, I'm trying something slightly advanced with the Document Generation API JSONata syntax by trying to inject an object's index into the object itself. I've reviewed the JSONata processing model and understand that it's possible to get an object's position in the array using the `#$var` syntax as described here: https://docs.jsonata.org/processing. The JSONata documentation also shows an example of this syntax here: https://docs.jsonata.org/path-operators#-positional-variable-binding Given the following JSON:{ "winners": [ { "firstName": "Bob", "lastName": "Ross" }, { "firstName": "John", "lastName": "Doe" } ] }I would like to use a Document Generation tag like the following:{% repeating-section winners#$i.{'firstName': firstName, 'lastName': lastName, 'position': $i} %} • Race participant {{firstName}} {{lastName}} completed the race in position: {{p
We have been recently trying to achieve creating an OCR enabled document from a pdf file and with the help of Adobe’s PDF services connectors we were able to do it up to certain extent however we faced the real challenge when the file were as huge as about 350-400 pages. Adobe’s OCR action has a limitation of 50 pages at a time. Luckily, we found a solution to this and thought of splitting the file and then merging it so get the expected outcome and we figured out a way also to do that but we are still seeing some problems while merging the file. The approach:Using the split pdf action to split file into 49 pages each -> using OCR action to file instance (apply to each) -> creating and storing the files in a temp folder after OCRed -> getting the temp files’ content and appending them to a temp array variableThe problem:We realized that there are size limitation to array variable in power automate. Are there any ideeas / solution on how to merge multiple files
I successfully integrated on one site I manage for work with no issues, however on the other site I manage in a volunteer role I'm seeing the issue that the "File Preview is Not Available. This application domain (http://phadp.org) is not authorized to use the provided View SDK Client ID." I've double checked the key and the domain I used when registering, but I cannot figure out why I continue to get this message. http://phadp.org/?q=node/832 Any help would be appreciated.
Is it possible to add a watermark on .pdf documents displayed with adobe pdf embed api? I am trying to do that with annotations, but it seems that in_line view and annotations are incompatible.
How do I cut & paste text from a .pdf to a WORD document?
Can someone confirm my observations about using PDF Extract on forms? This is based on my experimentation and reviewing other posts:The extended metadata has two boolean flags for forms: "has_acroform" and "is_XFA"PDF Extract does process Acroforms and populates the "has_acroform" flagIf there is data in the Acroform that data becomes an element in the resulting JSON. For example if the firstname field has "John" in it and the last name field has "Doe" in it, two elements will be created with the text values of John and DoeThere is nothing in the JSON to indicate the presence of a form field or to indicate that text was form data. In other words no way to know there was a form field called firstname containing John. John could have come from the pdf content.Static XFA forms can not be processed at all and result in an error. DISQUALIFIED - File not suitable for content extraction: File contains XFA form(s). Not supported for content e
I began using pdf extract and embed apis yesterday. Where can I get the sample code that Joel is using in this demo https://www.youtube.com/watch?v=z9aWoJnhHFc ? The application I want to make is very similar. I'm stuck on adding the boolean search feature.... Thanks!
Today we released a new tool to help you use the Adobe PDF Extract API: https://documentcloud.adobe.com/dc-visualizer-app/index.html This online demo will show you a source PDF and a nicely rendered version of the JSON. You can click on an element in the left hand side to see the code version of the output. You can click on the code on the right to see the associated visual element in the PDF. You can also download the PDF + extract data to look at it youself. Check it out and let us know what you think!
Hello ! I would like to use Pdf embed Api on a local host website, but I can't add the api on my project without url extension like ".com". Is it possible to fix it ? Best
I recieve an "Uncaught RangeError: Invalid time value at Date.toISOString (<anonymous>) at createAnnotationObject in AdobeDCViewApp.js", when trying to read existing annotaions from a document like this: adobeViewer.getAnnotationManager().then(annotationManager => { annotationManager.setConfig(customConfigFlags); const filter = { pageRange: { startPage: _startPage, endPage: _endPage } } const list_of_annotations = annotationManager.getAnnotations(filter) .then (result => { console.log(result); }) .catch(error => { console.log(error); });}); Any suggestions as to what I am doing wrong?
I'm getting Status: 200 ok response in ThunderClient/Postman. But I'm getting the following CORS errors on Axios in my localhost: 3000.
In Document Generation post requests, 1) Exchange JWT - Status: 200 OK2) Submit - Status:202 Accepted3) Poll - Status: 200 OKBut why I'm getting output as ext Corrupted file rather than a pdf file ??
When I using the Power Automate > Convert Document to PDF Action( Input File = HTML File ), it will always create PDF File in "Landscape" Mode,How can I create PDF Document in A4 Portrait Modus ?
<bottom> ال
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.