You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's the flow that we wish to utilize in our certificate generation code. Could you have a look and see what gaps we still need to fill? Thanks.
order=Digicert::Order.filter(common_name: "*.example.com",product_type: Digicert::Product::WildcardSsl)%(name1 name2).eachdo |name|
key=load_key(keypath[name])csr=Digicert::Csr.new(order: order,# obtain attributes from order that aren't provided herekey: key# only change the key in this CSR)duplicate_request=order.duplicate(csr: csr)downloaded_certs=duplicate_request.download_certificate(format: "zip")root_cert=downloaded_certs[:root]intermediate_cert=downloaded_certs[:intermediate]cert=downloaded_certs[:cert]end
The text was updated successfully, but these errors were encountered:
@ronaldtse: Not exactly the same way, as we are still using the OpenStruct but we can do that same thing through the find interface and then download the certificate content.
Once we have done this #103 (comment) then we can do it like the above flow.
Hi @abunashir ,
Here's the flow that we wish to utilize in our certificate generation code. Could you have a look and see what gaps we still need to fill? Thanks.
The text was updated successfully, but these errors were encountered: