Skip to main content
Known Participant
August 24, 2022
Question

Adobe : How its working

  • August 24, 2022
  • 1 reply
  • 485 views

Hello Everyone,

 

 I'm Pretty much new to Adobe PDF Services API . I just want to know how Adobe PDF Services API Working for .NET SDK?

 I have created new credentials using the below link

https://documentcloud.adobe.com/dc-integration-creation-app-cdn/main.html?api=pdf-services-api#

 

It Automatically generated one zip folder . I picked my zip like this

PDFServicesSDK-.NetSamples.zip\adobe-DC.PDFServices.SDK.NET.Samples\CreatePDFFromDynamicHtml

 

The above zip folder contains "PDFServices-api-credentials" and Private Key.

 

Q1. How PDF Services api working for the credentials and Private Key. in the downloaded version I hardly see any API Url to interact with PDF Services API. ? 

 

Q2 : What is the Purpose of this JSON ?

 

{
"client_credentials": {
"client_id": "",
"client_secret": ""
},
"service_account_credentials": {
"organization_id": "",
"account_id": "",
"private_key_file": "private.key"
}
}

 

Can some one reply to this how pdf services API Working as a collective thing?

    This topic has been closed for replies.

    1 reply

    Raymond Camden
    Community Manager
    Community Manager
    August 24, 2022

    q1) The reason you don't see a URL is that the SDK is doing that for you. We do have a REST API you could use instead, but the SDK makes things significantly easier.

    q2) That's the credentials the SDK use - well with blank values. If you downloaded a zip with credentials included, you should see real values. If you did not, you can go into our developer console to get your values.

     

    Known Participant
    August 24, 2022

    Thanks Ray. I assume the SDK interacts with the API  based on the credentials for PDF Services API . Correct me if I'm Wrong.

     

    I have another question

    Q1. Is it good to use private key and json credentials while deploying into azure app services?