Welcome to the Adobe Developer Community! Connect with peers to ask questions and share best practices.
Recently active
Hello, I have a S/4 HANA standard form (with fragments) that I am trying to customize. Within the form, I have a table that is nested and with a parent child relationship. As in the below screenshot, there can be multiple HUs and under a HU, any number of delivery items. Customer's ask is to print 1 HU and its associated delivery lines on a page. For this particular example, there would be 2 pages, page1 for HU 123 and page2 for HU 567. I have achieved this using conditional page break and the data gets split and passed on to new set of pages. However, on every page there is some header information that needs to be printed - some of them from the HU data and some of them from the delivery lines data. 1. The form title should be 'HU ***' where *** is the value on that page. 2. Need to read a specific field from the first delivery line on every page (it will be the same on all delivery lines and hence reading the 1st record is enough) and pass it to the header on master page. &nb
Hi, I am trying to fetch data from 3rd party endpoint and load it into one of data schemas in Adobe Campaign Standard. The mentioned 3rd party endpoint has the option to put filters on query strings, so for instance it can looks like this: var datenow = Date.now(); lasthour = now.setHours(now.getHours() - 1); (date_modified >= lasthour) AND (date_modified < datenow) To achieve this goal I've tried to use Adobe IO in the middle and I found that there is one similar use case described here: https://medium.com/adobetech/adobe-campaign-content-recommendations-in-email-b51ced771d7f My script for Adobe IO looks as follows: async function main () { try { //Declare all the options for GET request along with query parameters const fetch = require('node-fetch'); const response = await fetch('https://endpoint.com', { method: 'get', headers: { "Subscription-Key": "XXX", "TENANT": "YYY" } }); const data
Hi, Most of our clients use the free Acrobat Reader. To a PDF Form that we develop we wish to add some web server interaction.Acrobat Reader, we know, does not have web capture (no FDF GET, for instance). Please explain what can be accomplished with SOAP though: From "JavaScript™ for Acrobat® API Reference: Note: The SOAP methods connect, request and response are available only for documents open in Acrobat Pro andAcrobat Standard and for documents with Form Export Rights open in Adobe Reader 6.0 or later. Thanks, Enoch.
Currently, when configuring adobe.io (using AEM x CIF) endpoints for our application, we are using the "standard" adobe.io runtime endpoints. i.e. https://runtime.adobe.io/api/v1/namespaces/[...] We would like to mask these endpoints, using custom domain names. Can anyone shed some light on how we can go about this? Kind regards
I call api by postman then i have error. and api status I don't understand where the error is.
I am able to connect to adobe API using JWT. while i try to send a JSON response using POST via requests , I get back below response where all the data is coming across as zero's .not sure wht the issue is , would be great to get a response on this front !!. 'rows': [{'itemId': '1210001', 'value': 'Jan 2021', 'data': [0.0]}, {'itemId': '1210101', 'value': 'Feb 2021', 'data': [0.0]}, {'itemId': '1210201', 'value': 'Mar 2021', 'data': [0.0]}, {'itemId': '1210301', 'value': 'Apr 2021', 'data': [0.0]}, {'itemId': '1210401', 'value': 'May 2021', 'data': [0.0]}, {'itemId': '1210501', 'value': 'Jun 2021', 'data': [0.0]}, {'itemId': '1210601', 'value': 'Jul 2021', 'data': [0.0]}, {'itemId': '1210701', 'value': 'Aug 2021', 'data': [0.0]}, {'itemId': '1210801', 'value': 'Sep 2021', 'data': [0.0]}, {'itemId': '1210901', 'value': 'Oct 2021', 'data': [0.0]}, {'itemId': '1211001', 'value': 'Nov 2021', 'data': [0.0]}, ,
Hi, We have the Adobe Experience Cloud with products including Adobe Campaign, Adobe Audience Manager, Adobe Analytics etc. We intend to integrate Adobe IMS via user management API to manage and automate the user provisioning, update and query etc. However while we are to develop such API integration, we should not use the lived / production Adobe IMS to test, which could impact the existing users. Wondering any Adobe IMS sandbox environment I could use to connect to test the user management APIs and integration. Seek kindly the advice. regards, Zhenlong
HI: I work in VB.net and C# in Visual Studio (mainly 2022). I downloaded the Adobe pdf samples and created private.key and pdfservices-api-credentials.json files. The authentication works fine in the ExportPDFToDocx sample project, even after I moved that project to a new Visual Studio solution. When I create a new VB.net or C# project in a new solution, the authentication no longer works. The app just hangs at "Refreshing the session token". See log below. This happens in both VB.net and C# projects. I suspect I am missing something basic. Do I need a new private key and json file for each project or solution? Thanks. Log: 2023-01-16 18:26:06,096 [1] INFO Adobe.PDFServicesSDK.core.service.ExportPDFService - Exporting a pdf to format docx from Local File source:exportPdfInput.pdf 2023-01-16 18:26:06,134 [1] DEBUG Adobe.PDFServicesSDK.core.auth.JwtAuthenticator - Session token has been expired. Required
Hello I have created project for Adobe Photoshop API (Trial) I have JWT token I am able to generate Bearer AccessToken properly. Following is the code : var client = new RestClient("https://image.adobe.io/lrService/edit");var request = new RestRequest(Method.POST);request.AddHeader("cache-control", "no-cache");request.AddHeader("Authorization", bearertoken);request.AddHeader("x-api-key", ApiKey);request.AddHeader("Content-Type", "application/json");request.Parameters.Clear(); string data = "{\"inputs\": {\"source\": {\"href\": \"unedited/image.jpg\",\"storage\": \"external\"}},\"options\": {\"Whites\": 80},\"outputs\": [{\"href\": \"edited/image.jpg\",\"type\": \"image/jpeg\",\"storage\": \"external\"}]}"; request.AddParameter("application/json", data, ParameterType.RequestBody); string responseFromServer = "";IRestResponse response = client.Execute(request);responseFromServer = response.Content; I am getting response as : {"error_code":"401013","message":"Oauth token is n
There is no option to set the size, height or width of the pdf. The pdf generated is not in line with the original file.
Hi Adobe I/O team, I'm following your introduction to Adobe I/O Events Webhooks guide as I want to trigger a webhook call on certain events. However, every time I try to enable consent, as described here: https://github.com/AdobeDocs/adobeio-events/blob/stage/intro/webhooks_intro.md#receiving-events, I get the following error in postman: Invalid protocol: adobe+MY_CLIENT_ID. Any help would be greatly appreciated, since I'm a bit lost! Rafael
Hi team, since some Adobe Stock assets have several types of file extention(e.g. ai, jpeg, etc), I want to specify it or download all the files on the asset page when via Adobe Stock API. However according to Stock APIs (adobe.com), it only offers size parameter. Is there any option parameter of file extention?
Hi team, we're now building the app of Adobe Stock, letting employees to download the asset from our company's account. We don't want our employees to use the asset which is "Editorial use only" (e. g. Editorial Images – Browse 854,123 Stock Photos, Vectors, and Video | Adobe Stock ). How can we specify which asset is "Editorial use only", which is not? According to License API reference (adobe.com), it doesn't say about "Editorial use only". Please help me about this.
At some point in time, the format of the payload displayed in the event registration's debug tracing tab and delivered to the runtime action has changed. Older registrations still deliver the payload in the "old" format, while newly created registrations deliver it in the new format. In it, the content of the payload in the "old" format is present as the payloads JSON's child object called "data", and multiple other fields are present in the payload JSON beside it. Those other fields are seemingly HTTP request parameters. The biggest issue is that it seems that those new payload JSONs are being truncated to be 1024 characters long. This amount of characters is being exceeded even by just the data added to the payload automatically by `com.adobe.aio.aem` library in AEM when the event is being sent and this additional data added by the AIO itself. The trimmed JSON cannot be parsed by the AIO, which causes the runtime action to receive an empty event object. Is there any fix or a walk aro
Hi, I'm doing integration between Adobe PDF Service and Salesforce using APIs. Our main goal is to convert HTML file (i.e. stored in one of salesforce standard object 'ContentDocument') to PDF and stored that generated PDF file back to salesforce. I have performed below steps in my apex class: Generate access token using client_id, client_secret and jwt_token POST method to convert HTML file to PDF, Here I need some guidance. So, here which url I can use from salesforce and pass it as a value of inputUrl. Here is the SS of postman and i'm doing same steps in my apex class: I really appreciate your help in advance..! Thanks, Hetal
You and your teams might be usually on the go due to work, business conferences, meetings, and many other reasons. So, it might be difficult for you and your employees to stay in front of the desktop every time to stay up-to-date, access customer data, respond to incoming inquiries, manage conversations and incoming leads, and perform other operations from Salesforce.Being familiar with the ins and outs of the business, we don’t believe in restricting our customers to their work areas. So we’re about to show you how you can manage your business operations and perform actions in Salesforce irrespective of the location using the Salesforce1 mobile app. Read More
hi, I'm doing research for our next project, we're thinking about using adobe IO to create REST API which will fetch specific asset (byte stream or just a url to asset) from the DAM based on some logic, like tags matching... What's the difference writing this as adobe IO web action and writing sling servlet (our team is java skilled, limited javascript/nodejs exposure) ? Thanks
Hi, I use Pdf Embed API, I set showCommentsPanel: false and I use annotation API (enableAnnotationAPIs: true). When highlighted text is clicked then there is displayed Add a comment option in Highlight menu. I think, it shouldn't be there if comments panel is hidden, because it does nothing in that configuration. I noticed that on overview website Add a comment option doesn't appear in highlight menu: How can I get the same effect?
Hi community, from the documentation https://developer.adobe.com/runtime/docs/guides/#lets-talk-numbers--understanding-the-system-settings here it's specify a limit for Payload and Result in 1MB. It's also specify if you need more, the customer need to consider S3 Bucket. There is other way to incremet this limit? If the customer has a payload of 1.5 MB considering an S3 it's to much. Thanks a lot
Hello! We have a requirement where ServiceNow integrates with adobe to get customer's data (CCPA). In this process, the first step is to generate jwt token. For ServiceNow we need a rest api to be able to automate this process. I see we have rest apis for generating access token, submit access/delete requests and also to check job status. But there is no api to generate jwt token. From other thread (https://forums.adobe.com/thread/2640985), I could find a python script to automatically generate jwt token, but, ServiceNow cannot use a script. It requires an api. Is there anyway we can achieve this automation using java or a rest api? Has anybody ever tried to integrate from ServiceNow? Also, wondering why adobe doesn't have an api for jwt generation?
I need to know who created a project in the developer console. Is there an audit trail / log that shows who created the project?
I am trying to get a new JWT from AWS Lambda, using Node.JS. I have used the same Node.Js from examples that I am using locally on my MAC OSX. The local obtained JWT is ok, but when I try to get the same from AWS Lambda and use it to obtain the Token for Adobe PDF Services API, I obtain error: {"error_description":"JWT token is incorrectly formatted, and can not be decoded.","error":"invalid_token"} Any advice? Thanks
We were doing some testing last week on with creating a User Management API in the Adobe Developer Console. However, we have lost some of the keys that were created during the process. We came back this week to access that information or create a new project with a new API, but selecting a new User Management API is now unavailable. Is there any way to clear or delete our projects, get access to create a new User Management API, or access the keys that were already created from our original API test? Thanks,Andrew
Hi all, I want to have a custom design editor for one of my javascript-based projects. where users can import the files and can edit the contents of imported files. The user should be able to import and export files programmatically.Also, the users should be able to create new design templates using that editor. so that the templates can be used and modified later on by other users.Like the user can create a template with multiple layers for name, phone, and other icons and elements which can be changed by some other users later on.The custom editor should be able to import the following file types .ai webp png jpg etc is that possible? which one is the best option to achieve this functionality?
I fully understand why Adobe would not want to make it easy to delete Projects given there are downstream integrations that could be affected, but the inability to delete and manage anything in the interface is entirely frustrating. As far as we can tell, even accidentally clicking "Create New Project" gives you a permanent project even if you have done nothing within it in terms of hooking to any other tools. Long term management is very frustrating, sunsetted integrations you can never manage, etc. How is everyone handling this? Thanks for any assistance.
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.