-
I apologize for this basic question, but I can't seem to find the answer to this in the docs or examples. My use-case is querying a DNS server for a TXT record, to ensure an ACME client has correctly set a DNS-01 authorization challenge. I can successfully resolve the TXT record with Inspecting the response, I found these methods/attributes that got close:
Can someone point me in the right direction? I assume that I am just stumbling against some intricacies of the DNS RFCs, and I should be using one of these methods. Based on the docs, I think the Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Indeed "some intricacies of the DNS RFCs" is the right bet! TXT type is defined as non-empty sequence of strings of max. length 255. Thus the See https://datatracker.ietf.org/doc/html/rfc1035#section-3.3.14 HTH. |
Beta Was this translation helpful? Give feedback.
Indeed "some intricacies of the DNS RFCs" is the right bet!
TXT type is defined as non-empty sequence of strings of max. length 255. Thus the
.strings
.See https://datatracker.ietf.org/doc/html/rfc1035#section-3.3.14
HTH.