Question
Where do I find my private key
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?
