『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the full value of DC Web with our global community.
新着順
Hello,I have the following short code to extract tables in csv from a pdf. But it seems I did not understand something in the call (error message after the code snippet) import requests import json import pandas as pd def get_access_token(credentials): auth_url = "https://ims-na1.adobelogin.com/ims/token/v1" payload = { "grant_type": "client_credentials", "client_id": credentials["client_id"], "client_secret": credentials["client_secret"], "scope": "openid,creative_sdk" } response = requests.post(auth_url, data=payload) response.raise_for_status() return response.json()["access_token"] def get_uploadURI_and_asset(access_token, client_id): initiate_upload_url = "https://pdf-services.adobe.io/assets" headers = { "Authorization": f"Bearer {access_token}", "x-api-key": client_id, "Content-Type": "application/json" } payload = { "mediaType": "application/pdf" }
I have a use case in which multiple PDF files are uploaded. I want to make sure no duplicate files get uploaded based on all the documents that have already been uploaded. What would be the best way to achieve this? Thank you.
I want the ability to show my users a list of all of my help topics and allow them to pick which topics they want to create their own PDF. Is that possible?
using custom read / connect timeouts but get the following pdf extract error - how do I debug? File is 20mb PDF. -----error------python3.10/site-packages/adobe/pdfservices/operation/internal/api/platform_api.py", line 64, in is_correct_response raise ServiceApiException(job_error_response.get('message'), ResponseUtil.adobe.pdfservices.operation.exception.exceptions.ServiceApiException: description =ERROR - Unable to extract content. Internal error; requestTrackingId=d25c9ba3-1b4f-4863-9c81-8fd33d9b019f; statusCode=500; errorCode=ERROR
Hi there, when we use dc-visualizer-app we always get Sect element in the paths and when we use the API it depends per document.Is there a way to force the sect in the paths?
I would like to share a PDF that allows for annotation. However, I only want the current user to see their own annotations, and no others. Is this possible? I'm assuming this needs be done via PDF Embed API?
Today we released a major update to the .Net SDK (https://developer.adobe.com/document-services/docs/overview/pdf-services-api/gettingstarted/#net). This new SDK supports our REST APIs much better and more information may be found in the release notes: https://developer.adobe.com/document-services/docs/overview/releasenotes/#july-22-2024-net-sdk-400-major-release At this point, all of our SDKs are 4.x and higher, supporting the REST APIs properly. We'll have a blog post talking about this more in a week or so. Of course, you can continue to use the REST APIs if that's what you prefer.
Hi,after extraction, we sometimes have elements like these, where there is a parent with Text (here "NO") and a child which contains a part of the text, with different font properties (here "2", which should be "N2O" if combined). My question is: How can one combine such an inline element at the right position in the text-flow?In the docs (Extract API | How Tos | PDF Extract API | Adobe PDF Services) I see:Text: Text for the element in UTF-8 format, only reported for text elements. When inline elements are reported separately from parent block element, then this value has references to those inline elements.How can I see such a reference to the inline element? Or is this meant differently? ... { "Bounds": [ 211.8, 333.0, 222.9, 398.5 ], "Font": { "alt_family_name": "Times", "embedded": true, "encoding": "MacRomanEncoding", "family_name": "Time
HelloAny body knows how to contact pay as you go AWS subscription support. Tried lot of ways but no luck.Thanks in advance.
WE currently get this exception back from the pdf services api: adobe.pdfservices.operation.exception.exceptions.SdkException: description =Exception in fetching access token, requestTrackingId=(<class 'adobe.pdfservices.operation.internal.exceptions.OperationException'>, OperationException(), <traceback object at 0x71b988899400>)Is there some issue on Adobe's end?
Hi Team,Getting the following error while testing the pdf embed api in the demo page also facing similar errorcan anyone guide what is the issue or am i missing anything hereSample link: https://acrobatservices.adobe.com/view-sdk-demo/index.html#/view/FULL_WINDOW/Bodea%20Brochure.pdfScreenshot:Error Console:i think adobe API service is down getting badgateway error
I'm trying to open a Google doc via Document Cloud GSuite integration, and anytime I choose the file to open in Google Drive, Document Cloud starts to open, but keeps spinning and never actually opens the document. I've deleted and re-installed the integration as well as the Chrome plugin several times with no luck.Any ideas?
I would like to know if the pdf api service free trial has some kind of expiration or additional pricing after a couple of weeks of months of usage. Or is it really there's no expiration, but only limited service.
Describe the bugWhile Enabling auto save feature in pdf embedded api first comment is saving properly and after the first save the auto save not working properly throwing we are unable to post commentTo ReproduceSteps to reproduce the behavior:Go to PDF sample Enable Ato savePost your comment wait for the pdf for auto savePost another comment after auto save you will get error popupSee errorExpected behaviorAuto save must be working properly multiple save need to work properlyScreenshotsIf applicable, add screenshots to help explain your problem. OS: Windows 11Browser ChromeVersion Version 126.0.6478.127
Hello,I have noticed a strange behavior using Adobe PDF services API. Seems like a bug to me.I am using Microsoft Power automate with Adobe API in order to process PDF documents in Hebrew.Using Adobe PDF services API – 'Create Searchable PDF using OCR' works fine in Hebrew.If I manually copy the Hebrew text from the output searchable PDF document, it pastes correctly into a Word document (in Hebrew).However, if I use the – 'Convert PDF to Word' API on the searchable PDF document, the Word documents receives corrupted text (Gibberish).It is important to note that if I use the 'Convert PDF to Word' API on a PDF document that was NOT originally produced through the 'Create Searchable PDF using OCR', it does works fine in Hebrew.I will appreciate if someone could point me in the right direction solving this issue.
Hey folks! I am using pdf-services version 3.4.0 in my Java code.Suddenly all the JSON data has stopped getting rendered.I am using the CreatePDFOperation class for generating PDF from an HTML template.
Hi ,I am getting the write operation timed out error while uploading pdf for extraction. PDF Size 25mb
when trying to click on the expand button in a sized container it doesn't open the pdf in full screen it only happens in IOS mobiles. is there something that should be configurable? site for test: https://nivina3.wixsite.com/my-site-234
greetings Commmunity, i discovered that i cannot print anymore in firefox. Not even in the Demo. is there any fix or is there anyone working on it ? Because this is a huge let down.
Hello,I am extracting text and tables from a pdf using python. When it comes to text exctraction, is there a way to extract just text from the document without text contained in tables.
I am using pdf-services version 3.4.0 in my Java code.Suddenly all the JSON data that had been set dynamically stopped getting rendered.FileRef result = htmlToPDFOperation.execute(executionContext);
I want extract the content from a pdf (purchase invoices which is image based pdf) and get json response,as per the documentation i tried this code but i got this error or log message,what is this issue related to configuration? Here is the complete code (Node sdk)import { ServicePrincipalCredentials, PDFServices, MimeType, ExtractPDFParams, ExtractElementType, ExtractPDFJob, ExtractPDFResult, } from "@adobe/pdfservices-node-sdk"; import * as fs from "fs"; import AdmZip from "adm-zip"; import dotenv from "dotenv"; dotenv.config(); // console.log(process.env.PDF_SERVICES_CLIENT_SECRET); class AdobeExtractAPI { async extractTextFromPDF() { try { // Initial setup, create credentials instance const credentials = new ServicePrincipalCredentials({ clientId: process.env.PDF_SERVICES_CLIENT_ID, clientSecret: process.env.PDF_SERVICES_CLIENT_SECRET, }); // Creates a PDF Services instance const pdfServices = new PDFS
Dear All, I am creating a simple single page mobile app built using SAP MDK which creates a PDF document from .docx template using merge API. However, after recieing the bearer token when I make my call to https://pdf-services-ue1.adobe.io/assets, I get :"response": { "status": 401, "statusText": "UNAUTHORIZED", "text": "{ \"error\": { \"code\": \"Unauthorized\", \"message\": \"Oauth token is not valid\", \"details\": { \"error_code\": \"401013\" } } }\n".My Code: I have obtained the bearer token following: https://developer.adobe.com/developer-console/docs/guides/authentication/ServerToServerAuthentication/implementation/#generating-access-tokens-programmatically But still I get the unauthorized error. Note: The same credentials /token work from Postman and some other Low code no code tools like SA
Hello,We are trying to use Adobe Embed API to allow our clients to fillout PDFs. We are able to fillout some PDFs, but not Government PDFs (W-2, W-4, I-9, etc.). The Government PDFs are displayable, just not fillable. If we open the Government PDFs in a browser or Adobe Acrobar Reader, then we are able to fill them out. Can Adobe Embed API be used for filling out Government PDFs? Is there something else that we need to do to enable filling them out? Thank you,-Ken B.
I am facing an issue while using the free trial API of Adobe to extract table data from PDFs in Python. When Adobe extracts the table data and returns XLSX files for each table, it often misses table values or incorrectly places values in the wrong columns. For example, if a table has two columns, Date and Price, Adobe sometimes replaces some Date values with Price values, and vice versa. However, when I test the same PDF on the Adobe frontend, the results are much more accurate. Why does this issue occur when using the Adobe API? I need guidance and help
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.