Hi, I am building python script with acme library and want to integrate pre-validation of the domain before SSL certificate is actually going to be signed.
I use poll_authorizations method from ACME library. Can I use this freely or do I have to take care of limits like when signing SSL certificate? I think there are some limits like 50 requests per week per domain or something like that.
LE doesn't really do preauth, so not much information about it: if you do some hackery and make dummy order as preauth, you'd have 300 new orders per 3 hour (rolling window).
You might consider using the Let's Encrypt Staging server for just your authorization testing. Much more relaxed rate limits and not consuming LE production resources. Although, I'm not sure why you wouldn't just issue a cert if the auths succeed and report the failure if not.
Another good topic to read from the /docs/ selection is the one for Profiles.
to prevent starting the overall flow with CSR creation etc when it is obvious that domain validaiton is not going to be passed. But looks like even when only using poll_authorizations I need to have "order" creates beforehand, that means CSR anyway needs to be created. So I am bit stuck and maybe will not implement any prevalidation at all.
To be clear, the ACME protocol does not require a CSR until finalization. It looks like the library you are using requires the CSR to be provided up-front in order to create a new order, but other libraries do not have that restriction.