Unlock the full value of DC Web with our global community.
Recently active
Does Html to Pdf support converting html form inputs into Fillable form inputs?If so, how can I do that?
Hello, all I wanted to do was to Open a PDF, change its text contents, and save as a new PDF ?As far as I can tell after hours of tests, this fairly obvious use case is not actually supported even by paid Adobe APIs ? (Without possibly: (1) exporting to Word, (2) modifying in Word using the MS API, and (3) generating an entirely new PDF from the Word Document -> which will always have problems...) Please Help,Cameron
I'll just start this off by saying that I'm trying to accomplish this through Zoho CRM using their scripting language Deluge and the Rest API commands. We are just getting started using the PDF Services API, walking through the authentication process, and uploading the asset. We're able to get our access token, then the uploadUri and assetID, but when we go to upload a file to the uploadUri we get a response code 400..- InvalidToken- The provided token is malformed or otherwise invalid We did figure out that once we get the initial response with the uploadUri and assetId, we have to decode the url before trying our POST of the file. If we don't decode the url, the error is "SignatureDoesNotMatch", if we do decode it, "InvalidToken". I've posted the code below if that helps, but again it's in Zoho Deluge. Any help is appreciated! adobeTokenUrl = "https://pdf-services.adobe.io/token"; adobeHeader = Map(); adobeHeader.put("C
I have a requirement to convert pdf to a searchable pdf, where a pdf page contains both text and images with text. therefore i want to extract text from images and add an overlay over the image to maintain the searchability of text and the images. I'm using .net framework and tried using OCRSupportedType.SEARCHABLE_IMAGE_EXACT but it doesn't extract the text of the image. How to overcome this issue?
We have a paid PDF Service API license subscribed via AWS Marketplace and been using Node SDK and JWT credentials to make API calls. This is the original code before migration:const credentials = PDFServicesSdk.Credentials.serviceAccountCredentialsBuilder() .withClientId(JWT_CLIENT_ID) .withClientSecret(JWT_CLIENT_SECRET) .withOrganizationId(ORG ID) .withAccountId(ACCOUNT_ID) .withPrivateKey(PRIVATE_KEY) .build();Using the servicePrincipalCredentialsBuilder() is the "new" way based from the sample code provided so we used this together with the OAuth Server-to-Server credentials and our code now looks like this:// NEW_CLIENT_ID and NEW_CLIENT_SECRET came from the new OAuth Server-to-Server Credentials const credentials = PDFServicesSdk.Credentials.servicePrincipalCredentialsBuilder() .withClientId(NEW_CLIENT_ID) .withClientSecret(NEW_CLIENT_SECRET)However, after a few days we started to receive this error "Either quota for this operation
Hello Team, I have an angular web application and I have requirement like create new PDF and add fillable input like input, checkbox, radio etc.... aftet that save pdf and preview same PDF with programatically fill the fillable input value. So is there any api service which provide all tool in web application same like Adobe Acrobat windows ?
Getting below excpetion when trying to convert docx to pdf java.lang.ClassNotFoundException: javax.validation.Validationat java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) ~[na:na]at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) ~[na:na]at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[na:na]at com.adobe.pdfservices.operation.auth.Credentials.validate(Credentials.java:52) ~[pdfservices-sdk-3.4.0.jar:3.4.0]at com.adobe.pdfservices.operation.auth.ServicePrincipalCredentials.<init>(ServicePrincipalCredentials.java:31) ~[pdfservices-sdk-3.4.0.jar:3.4.0]at com.adobe.pdfservices.operation.auth.ServicePrincipalCredentials$Builder.build(ServicePrincipalCredentials.java:90) ~[pdfservices-sdk-3.4.0.jar:3.4.0] ----------------------------------------------------------------------------------------- Below is the maven dependency added - <!-- adobe pd
LIVE PAGE: http://kbshawauthor.com/Domino101.htmlALLOWED DOMAIN: localhost. I've also used kbshawauthr.com.ERRORS:[Error] Origin http://kbshawauthor.com is not allowed by Access-Control-Allow-Origin. Status code: 403[Error] Fetch API cannot load https://viewlicense.adobe.io/viewsdklicense/jwt due to access control checks.[Error] Failed to load resource: Origin http://kbshawauthor.com is not allowed by Access-Control-Allow-Origin. Status code: 403 (jwt, line 0)SCRIPT:<script type="text/javascript">document.addEventListener("adobe_dc_view_sdk.ready", function(){ var adobeDCView = new AdobeDC.View({clientId: "<ce243576f91c413e9ce001673ef2b515>", divId: "adobe-dc-view"});adobeDCView.previewFile({content:{location: {url: "Domino101.pdf"}},metaData:{fileName: "Domino Lady Episode 101"}}, {showAnnotationTools: false, showDownloadPDF: false, showPrintPDF: false});});</script>
We are using Node SDK to call CombinePDF but we are getting the below error during the merge process:Exception encountered while executing operation Rie: Source PDF is certified and cannot be processed. at processTicksAndRejections (node:internal/process/task_queues:96:5) { requestTrackingId: 'bc530dd6-ff29-4f01-b284-6ec74e39751c', statusCode: 400, errorCode: 'PDF_CERTIFIED' }const fileRefFromStream1 = PDFServicesSdk.FileRef.createFromStream(s3Stream1, 'application/pdf'); const fileRefFromStream2 = PDFServicesSdk.FileRef.createFromStream(s3Stream2, 'application/pdf'); combineFilesOperation.addInput(fileRefFromStream1); combineFilesOperation.addInput(fileRefFromStream2); await combineFilesOperation .execute(executionContext) .then(async (fileRef) => { // do some processing but not getting called because of the exception }) .catch((err) => { if ( err instanceof PDFServicesSdk.Error.ServiceApiError || err instanceof PDFS
I have an angular web application, and I am using the Embed PDF API to display a dynamically generated report on a specific page, which works. The report is generated, and it is displayed on the page fine. The issue is in the Chrome developer console it displays the following CSP error.Refused to apply inline style because it violates the following Content Security Policy directive: "style-src 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-pkLRtl3yCZkYCclFQUf2VrpHEpfMiMUVZIROBKwOG9M='), or a nonce ('nonce-...') is required to enable inline execution.It's coming from a printHelper.html, which is something that I have no access/control over. And, according to the sources tab in the developer console, is coming from acrobatservices.adobe.com. So, I'm not sure how to fix that.If anyone has any ideas, I would greatly appreciate it.
Whenever, I try to open up a pdf in icognito mode, I get a blank viewer with the errors described above in the browser console. Can you help as this is a critical bug my customers are facing ? I'm using Adobe Embed API for React. Thanks.
Is there a way using the Acrobat Services API to insert a background to a PDF, such as an image or more preferably a PDF. In Acrobat you can load a PDF and then in Tools you can Insert a Background, so just wondering if I could automate this at all? Thanks in advance. Colin.
we success to subscribe on aws and adobe , after creatint our credential but the key inside the config.zip file is not correct , we meet this on Power automat connexions : Please how to get a correct Base64 Encoded Private Key ? Kind Regards
I just discovered that if I enter the URL to a page that includes the PDF Embed API without including "www" in the page URL, the PDF does not load. The page is blank. But if I add "www" in the address bar for that same page, then the PDF loads like normal. Does anyone know why this occurs and if there is some way to make the PDF load if a user leaves out the "www"?Thank you!
I was wondering if the scripts required for Document Services API are available for download since the network is blocking Adobe Documents Cloud as part of corporate policy. I want to save the scripts locally and link without calling them from https://documentcloud.adobe.com/view-sdk/main.js.
When i post my json data to the document creation API, i keep getting the "input file appears to be corrupted and cannot be processed". I have tried using the MS Word ad in to create a new document and try the api, but i receive "it seems there was an error on the server, Please try again". What could be the issue ?
Is signature_details a real propery that this endpoint returns about a PDF? In the docs here: https://developer.adobe.com/document-services/docs/apis/#tag/PDF-Properties/operation/pdfoperations.pdfproperties.jobstatus ...the response sample clearly shows this property, as an array of objects, representing digital signatures and their respective certificates.But it's missing from the schema itself, and indeed it's not returned when I use this endpoint to examine a signed PDF. It's also not returned when using the Get PDF Properties action in Power Automate. Is this a deprecated property that just hasn't been removed from the sample? Is there any way to retrieve the signature data from a PDF using the API?
Hello, I'm integrating the adobe e-sign API with .Net project. In the API documents, Agreementinfo class has attribute sendType. In .net AgreementCreationInfo class, sendType attribute is not available. https://secure.na1.adobesign.com/public/docs/restapi/v6#!/agreements/getAgreementInfo While I was testing the API from the above URL, having the sendType value 'Regular_send' showed me the eSign box in the document. But the one created through .Net rest API from web app, eSign box is not available in the PDF and status is showing as 'out to fill form'. But I was expecting 'out for signature '. Please advise on how to achieve this. From c#, I'm using the method to create agreement. Agreementsapi.CreateAgreement(token, agreementCreationInfo) Getting agreement details using API, Agreementsapi.GetAgreementInfo(token, id) Please suggest on how to add eSign box to document created through .net project. Thanks.
Hi, We have noticed the PDF Viewer(in AEM)/Embed PDF API seems to load the pdf very slowly and sometimes even after loading we see the images are going grey and loading again. Its taking almost 3 minutes to open some pdf's we have on our site. Can someone please suggest if there is a way to speed up the PDF Viewer?
Hello! I am trying to use PDFServices-SDK in Python,specifically Extract PDF. I created my credentials and the samples zip download contained the JSON file. I am using the below to establish connection.credpath = "/content/credentials/pdfservices-api-credentials.json"print(credpath)credentials = Credentials.service_account_credentials_builder() \.from_file(credpath) \.build() However, when executed, it says "No Private Key found", I read online and everywhere I read, it says that the samples download should contain a "config" file with the private key. I dug through my downloaded files and I don't see it anywhere. I went to the developer console and even there, I couldn't find an option to generate a Key-pair. Wondering if anyone else ran into this and if so, what steps did you take? Would there be a reason why my samples download wouldn't contain the Private Key?
I'm getting errors when saving my document using the adobe embedded api. The error is related to the Content Security. Here is the error I get: Refused to connect to 'data&colon;application/octet-stream;base64,AGFzbQEAAAABrgd5YAJ/fwBgAn9/AX9gBH9+f38BfmADf39/AX9gAX8Bf2ACf34BfmABfwBgA39/fwBgBX9+f39/AX5gBH9/f38Bf2AFf39/f38Bf2ADf35+AX5gAn9/AX5gAn9+AX9gAn9+AGABfAF8YAN/f34Bf2AAAX9gAX8BfmAEf39/fwBgA39+fwF+YAZ/f39/f38Bf2ADf35/AGADf39/AX5gA39+fwF/YAZ/fn9/f38BfmAGf39/f39/AGAFf39/f38AYAAAYAZ/fn5/f38BfmAEf39+fwF/YAR/f39/AX5gB39/f39/f38Bf2AIf39/f39/f38Bf2AEf39/fgF/YAV/f39/fwF+YAV/f39+fgF/YAF+AX9gBX9+fn5+AGADf35+AX9gA39/fgF+YAJ8fAF8YAR/f35+AX9gBX9+f35/AX9gA39/fgBgBX9+fn9/AX5gBn9/f39/fwF+YA...YBADzmAQAAAAAA9OYBACAAAABNBAAASgQAAFN0MTZpbnZhbGlkX2FyZ3VtZW50AAAAAJzlAQDc5gEAvOYBAAAAAAAo5wEAIAAAAE4EAABKBAAAU3QxMmxlbmd0aF9lcnJvcgAAAACc5QEAFOcBALzmAQAAAAAAXOcBACAAAABPBAAASgQAAFN0MTJvdXRfb2ZfcmFuZ2UAAAAAnOUBAEjnAQC85gEAU3QxM3J1bnRpbWVfZXJyb3IAAACc5QEAaOcBADzmAQAAAAAAsOcBAK4BAABQBAAATAQAAFN0MTRvdmVyZm
Hi!I know that Adobe Acrobat Pro allows users to add new (accessibility) tags doing a manual selection of the texts, is there something equivalent that can be achieved using the API? I have a bunch of PDFs that have no tags and I need to tag them to fix the accessibility, I'd like to write a program to automate and speed up the process because the PDFs are too much to perform the fixing manually. I can NOT use the autotag API because the PDFs are quite complex and the autotag result would be wrong (I tryed using the demo). Is there something I can do? Thank you,Simona
I am using the API to convert PDFs to .docx files. It has never had any problems. However one file I have keeps on failing with a 500 internal server error during processing. I poll the "location" URL and after about a minute it returns a "failed" status. I'm not sure how to go about debugging this. I can't attach the PDF file publically to this post because it contains sensitive information. I'm looking for someone in Support to reach out who I can work with.
I finally have my embedded pdf working using the light box embed on my wordpress website. I chose light box because when viewed on mobile, I needed the user to be able to pinch zoom in and out to see the small text, and this works well. However, if the user should tap the side of the screen, it assumes the user is "exiting" the light box and the lightbox/pdf closes. When I refresh the screen, the pdf isn't reloading/reopening. Is there any way to "ignore" accidental screen taps and always have the lightbox/pdf open? The webpage this pdf is viewed on isn't linked to on my website, so they won't necessarily be able "go back" to previous page.
Hi there! I am trying to connect an orchestration SaaS product I use (make.com, formerly Integromat) to use the Adobe PDF Services API, The first step in Make is to create a connection. I have a client_id and client_secret and I downloaded the Postman collection and everything works fine. I notice in postmn that GetAccessToken issues a POST to https://pdf-services.adobe.io/token. I am assuming that this is the value for "Token URI" that I'll mention later. When setting up the initial connection in Make, it has two flow types:1. Authorizarion Code2. Implicit Both flows require client_id and client_secret and have the option to specify a "Scope"Authorization Code requires a "Authorize URI" and a "Token URI". Implicit just asks for the "Authorize URI". Can someone please advise on what values I need to enter for Authorize URI and Token URI? I've been perusing documentation for hours and chassing rabbits down holes and nothing is making any sense to
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.