Unlock the full value of DC Web with our global community.
Recently active
The same document cannot recognize the conditional expressions in the form, but it can recognize the conditional expressions outside the form. Can anyone tell me why this is?
Hi,Using the document generation API, is it allowed to use repeating-sections inside a table? According to a basic test it is not supported. See Word and JSON files in attachment. I do know nesting works using multiple nested {% repeating-section %} tags, but I want to benefit from table properties for my outer array. Word Table TemplatePDF Output
What formula can be used to convert PDF user units into browser-compatible measurement units (for eg: pixels)? For eg: `TextDecorationThickness`'s value is in PDF user units, how should this be translated into pixels or any other browser compatible value?
I signed up for free trial via aws, wanted to quickly deplete my first x hundreds of free calls and ran a script to do document merge in a loop. I received an email about avaluation perion end, "dobe PDF Services API subscription evaluation period has ended" but now I am not sure where can I see my paid consumption. How many calls I made and how much is due to paid at the end of the month.Is it available somewhere in AWS Cost monitor? (I signed up via AWS marketplace)I tried to check Adobe Admin console - no billing/consumption information there.I also tried https://developer.adobe.com/console/homeunder Insight - also zero API calls reported.Will I be charged in the AWS bill at the end of the month?
Hello, Our tool (NexusIQ) found 2 vulnerabilities from the dependencies used by @adobe/pdfservices-node-sdk : 3.2.0.move-file: 1.2.0 (recommendation is to upgrade to v2.1.0) - https://cwe.mitre.org/data/definitions/732.htmlcomponent-type: 1.2.1 (parent dependency validate: 4.5.1) - https://cwe.mitre.org/data/definitions/1333.html Our application is already in production and will block future deployments if not addressed because the pipeline will fail if it finds any vulnerability. Using the PublicAPI is our last option because it requires code refactoring. Please advise.
I am so confused by the credentiation aspect of using Adobe Extract API I scarcely know where to begin. I have a project and under Service Account (JWT) I can find ClientID, ClientSecret, Technical Account ID, Technical Account Email, Organization ID. I can plug these values into my extract_txt_from_pdf.py in attempt to run the sample code to try and use python to access Adobe Extract API. That file, of course, calls for a private key - more specifically a path to a private.key.txt file. I can find no private key on my console. When I click "generate public/private keypair" I do get a private key via a config file that inlcudes a private.key.txt file, and also includes a certificate_pub.crt file. I have no idea what to do with the latter. When I try to use the private key from the config file, (using the path to that file in extract_txt_from_pdf running the code throws this error: "OSError: [Errno 22] Invalid argument: 'c:\\Users\\stand\\P
Why can't I register a local domain (eg localdev) to get the API key?I do have such a project registered in the past but now I want to register a new one and it says : "Domain localdev is invalid"
Is Adobe PDF Embed API integration sdk is available for mobile platform - android and iOS ? If yes then kindly share some links/steps asap. currently we had implemented in javascript for web platform now looking for mobile platform.
Hello community, I would like to test the Services API Free Trail and start the 6-month free trail but it doesn't work. I get always following failure:What it the problem? I refreshed the browser several times and also tried other browsers...Thanks a lot and best regardsMarcel
We tested a PDF with fillable form, in FULL_WINDOW embed mode. It worked fine in PC layout. However, the PDF cannot be renderred in mobile responsive view. As attached screen cap.
Well, something is wrong in the process and i don't know where even followed the doc api.Process :1 - Get AccesssToken2 - Upload Presigned URL. Everything seems fine. i got uploadUri and assetID3 - Upload Document - put to Uploaduri I got a 200 response. Seems ok.4 - Got asset meta data with assetID5 - Extract PDF and i got a 403 with AssetIDI follow doc here.https://developer.adobe.com/document-services/docs/apis/#tag/Extract-PDF/operation/pdfoperations.extractpdf.jobstatusIt's mentionned job ID. i don't anything to retreived job.https://developer.adobe.com/document-services/docs/apis/#tag/Extract-PDFIf someone can put me in the right track as the doc API is nothing to help.
I am sorry to ask a dumb question, I am sue, but I a non-programmer, but I want to test Acrobat Extract API out. So I have established the credentials, and I have downloaded unzipped pdfservices-python-sdk-samples-2.0.0.zip to a directory . I substituted my credentials in that file per the instructions at the developer website. I want to use python via Visual Studio Code. I have pip installed in python pdfservices-sdk 2.1.2. Can I now simply start running code samples found in file extractpdf?
I am having problems starting my PDF Extract API trial. When I click on pdfservices-api-credentials-json it asks me to-“Replace the contents of this file with pdfservices-api-credentials.json in the zip file that must have been mailed to you from Adobe.” Well I in fact never got a zip file e-mailed from Adobe.
Im having some issues with the embed API. the PDF pops up and then instantly disappears when I check dev tools I see the below error. Access to fetch at 'https://viewlicense.adobe.io/viewsdklicense/jwt' from origin 'https://download.militaryonesource.mil' has been blocked by CORS policy: No 'Access-Control-Allow-Origin'. But I'm not sure why i am getting this error as the allowed domain is set to allow this URL (download.militaryonesource.mil) in the API config. <div id="adobe-dc-view" style="width: 800px;"></div><script src="https://documentcloud.adobe.com/view-sdk/main.js"></script><script type="text/javascript">const queryString = window.location.search;const params = new URLSearchParams(document.location.search);document.addEventListener("adobe_dc_view_sdk.ready", function() {var adobeDCView = new AdobeDC.View({clientId: "SOMECLIENTID",divId: "adobe-dc-view"});adobeDCView.previewFile({content: {location: {url: "https://downlo
I visited the site Adobe PDF Services API to authenticate and setup the connector for my Microsoft Power Platform environment but the site states I need to login with a Personal Account. Are PDF Services not available to Business Accounts/Teams Accounts managed by the Adobe admin portal? I have a Adobe CS subscription on my user under the business and I'm an administrator. I am also curious if there is a way to retrieve the "Client ID" from the admin console. I suppose that may be useless if I can't setup a key exchange but curious what's possible.
Hi,I'm (trying to) extract data from a pdf using the code in extract_txt_table_info_with_figure_tables_rendition_from_pdf.py as a template. It works fine - and manages to download the file to /tmp/sdk_result/ but then breaks on result.save_as(output_file_path) with the following error: INFO:adobe.pdfservices.operation.internal.io.file_ref_impl:Moving file at /tmp/sdk_result/dbe74a20abb911ed8aaf57ef4efd14e7.zip to target /mnt/batch/tasks/shared/LS_root/mounts/clusters/<pathinfo>/1990965948.zip --------------------------------------------------------------------------- OSError Traceback (most recent call last) Input In [19], in <cell line: 28>() 79 output_file_name = name[:-3] + "zip" 80 output_file_path = output_path + output_file_name ---> 81 result.save_as(output_file_path) 83 except (ServiceApiException, ServiceUsageException, SdkException): 84 logging.exception("Exception encountered while executing operation") File /anaconda/envs/azureml_py38/lib/
HiWe're using the Acrobat PDF Services API "Document Generation" to fill a Word document template with variables, and outputting a PDF. Some of the merge tags include strikethroughs, (think a price being discounted shown as : Was £100 Now £50Our Word document would beWas £{{price_was}} Now {{price_now}} However when the PDF generates the strikethrough has been removed. Does the API support this?
Hello community, Hope i can get an answer quick and manage to fix this.Today we reached our 1000 units on free plan. I'm trying to pay for more units and from the mail received from Adobe i get redirected to an aws page to subscribe. All cool but when i finish the setup it asks me to create new credentials. Thing is that i want to UPDATE our current api service , not to create a new one. By creating new credential we have a lot to modify in our code, so the perfect situation it's just to update our current plan with more units. Is it possible? and how ? Thanks in advance and wish a great day to all of the readers.
Hey, I'm trying to install Adobe Document Generator Add-in on my Microsoft word (I'm using Microsoft Office Professional Plus 2019).After installing the add-in and opening it, I get a black page with nothing in it and I can't figure out how to use it. Reloding the add-in didn't work.any ideas?
Is there any paid technical supporting services from Adobe for using the free Adobe PDF Embed API?
Currently, the structure of the JSON output is flat. Additional steps need to be taken to build a hierarchy of elements for republishing the content in other formats. Is there a way to get the output with hierarchy via the API, or any helper scripts to create a JSON/XML with hierarchy?
Hi, Are there any way to get a PDF/A out from a MSWord conversion job submitted to the PDF Services operation /operation/createpdf ? Thanks
I can convert to pdf using the following link, but cannot do so by using PDFServicesSDKhttps://www.adobe.com/acrobat/online/convert-pdf.htmlI got the following errorError occurred while processing the request; transactionId=9ed119bc-83a7-b414-afb7-06fc14650070 at Adobe.PDFServicesSDK.core.api.PlatformAPI.StatusPoll(InternalExecutionContext context, String location, String requestID)Is there any way I can get more detail on the error by the transactionId I get ?
I'm using the Embed API to display a PDF with several checkboxes and radio buttons in a browser.I can then fill in the checkboxes and radio buttons and save the file.After the save, I want to read back the values of the checkboxes and radio buttons.Is there a way to do this with the Embed API ?If not, any suggestions? Thanks,John
I have a page containing five policies, each one a PDF, and I want to display them in an accordion where expanding each one brings up the corresponding embedded PDF using PDF Embed API. I've tried changing the name of the variable and the ID of the div, but only the first PDF shows, and the rest are blank. How is this accomplished?
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.