Answered
HTML to PDF converter
I am converting html to pdf using node js. to create credential Object, I am using below code.
const credentials = PDFServicesSdk.Credentials.serviceAccountCredentialsBuilder() .fromFile(path1.join(__dirname, '../pdfservices-api-credentials.json')) .build();
this is working absolutely fine. but for security resons I dont want to keep credentails inside file pdfservices-api-credentials.json
I am keeping its content in azure vault. So, is there any other way to use instead of using fromFile method?
I am keeping its content in azure vault. So, is there any other way to use instead of using fromFile method?
