Replies: 1 comment
-
For the first part, the reason for the API version query to fail is that [
{
"url": "\/dns\/api\/v1",
"version": 1
}
] But the provider returns just a single version information: {
"url": "\/dns\/api\/v1",
"version": 1
} However, for This does not resolve the second issue of the later failure though. For that, I have opened a separate issue (#2128) as this is caused by the API not being located at the URL root (i.e., |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to get the DNS challenge to work with (German) provider UD Media that claims to provide a PowerDNS compatible API. However, I'm encountering multiple issues and am a bit at a loss on how to diagnose this further. I would therefore be grateful for any pointers in that regard. If this is the wrong place to ask for this, please let me know.
The PowerDNS compatible configuration is performed analogous to the description given by the provider here (German only).
Querying of the API version is already failing:
However, querying via
curl
seems to give a reasonably looking result:When setting the API version manually (
export PDNS_API_VERSION=1
) the warning about the API version query vanishes (as it is no longer performed) but the query still fails:Querying the API with the URL I would have expected with
curl
as follows, a valid JSON response is given:Is there anything I misunderstood with the configuration or what I could do to diagnose this further?
Beta Was this translation helpful? Give feedback.
All reactions