AcmeClient.issueCertificate

Issue a certificate for domainNames

The client begins the certificate issuance process by sending a POST request to the server's newOrder resource. The body of the POST is a JWS object whose JSON payload is a subset of the order object defined in Section 7.1.3, containing the fields that describe the certificate to be issued.

class AcmeClient
issueCertificate

Parameters

domainKeyData string

the private PEM-encoded key

domainNames string[]

list of domains

callback Callback

pointer to function to setup expected response on given URL

Return Value

A Certificate object or null.

Throws

an instance of AcmeException on fatal or unexpected errors.

Meta