Add TencentCloud (DNSPod) API

master
KincaidYang 2023-09-02 21:21:26 +08:00
parent 2981ef51d8
commit 264e54e72f
1 changed files with 20 additions and 0 deletions

@ -81,6 +81,7 @@
- [157. Use Google Domains DNS API](#dns_googledomains)
- [158. Use DNSExit API](#dns_dnsexit)
- [159. Use Lima-City (Trafficplex)](#dns_limacity)
- [160. Use TencentCloud (DNSPod) API](#dns_tencent)
- [Use custom API](#dns_myapi)
- [Use lexicon DNS API](#dns_lexicon)
@ -2020,6 +2021,25 @@ The login variables will be saved in `~/.acme.sh/account.conf` and will be reuse
Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/4758).
<a name="dns_tencent"/>
## 160. Use TencentCloud (DNSPod) API
Please visit https://console.cloud.tencent.com/cam/capi to obtain the API key.
```sh
export Tencent_SecretId="<Your SecretId>"
export Tencent_SecretKey="<Your SecretKey>"
```
To issue a cert, run the following:
```sh
./acme.sh --issue --dns dns_tencent -d example.com -d *.example.com
```
The login variables will be saved in `~/.acme.sh/account.conf` and will be reused when needed.
Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/4781)
<a name="dns_myapi"/>