fix(dondominio): change key JSON paramater from apikey to password (#969)

Fix #923
This commit is contained in:
Jorge
2026-01-13 12:00:08 +01:00
committed by GitHub
parent b2a446b8c1
commit 212841c651

View File

@@ -119,11 +119,11 @@ func (p *Provider) Update(ctx context.Context, client *http.Client, ip netip.Add
Host: "dondns.dondominio.com",
Path: "/json/",
RawQuery: url.Values{
"user": {p.username},
"apikey": {p.key},
"host": {utils.BuildURLQueryHostname(p.owner, p.domain)},
"ip": {ip.String()},
"lang": {"en"},
"user": {p.username},
"password": {p.key},
"host": {utils.BuildURLQueryHostname(p.owner, p.domain)},
"ip": {ip.String()},
"lang": {"en"},
}.Encode(),
}