Updated dnsapi2 (markdown)

GNDevProd
2026-03-28 01:15:38 +08:00
parent 58a5aa05c5
commit d333420327

@@ -126,6 +126,7 @@
- [202. Use lexicon DNS API](#dns_lexicon)
- [203. Use Baidu Cloud BCD DNS API](#dns_baidu)
- [204. Use BEST-HOSTING DNS API](#dns_bh)
- [205. Use Gname.com DNS API](#dns_gname)
- [Use custom API](#dns_myapi)
@@ -3202,6 +3203,24 @@ acme.sh --issue --dns dns_bh -d example.com -d '*.example.com' --dnssleep 120
Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/6854).
<a name="dns_gname"/>
## 205. Use Gname.com DNS API:
Get your APPKEY from the GNAME.COM, see [here](https://www.gname.com/domain/api)
Export the required APPID and APPKEY:
```bash
export GNAME_APPID="your APPID"
export GNAME_APPKEY="your APPKEY"
acme.sh --issue --dns dns_gname -d example.com -d '*.example.com' --dnssleep 120
```
Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/6874).
## Use custom API
<a name="dns_myapi"/>