We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
func (s *RecordsService) Create(domain string, recordAttributes Record) (Record, *Response, error) { payload := s.client.CommonParams.toPayLoad() payload.Add("domain_id", domain) ..... }
不知道是不是 DnsPod 文档更新了,这里如果将域名传递给 domain_id 提交会报错:could not get domains: 域名编号不正确 个人将 domain_id 更换成 domain 字段就能正常创建。
The text was updated successfully, but these errors were encountered:
DNSPod is now a part of Tencent Cloud.
I recommend using https://github.com/tencentcloud/tencentcloud-sdk-go
https://github.com/TencentCloud/tencentcloud-sdk-go/tree/master/tencentcloud/dnspod
Sorry, something went wrong.
No branches or pull requests
func (s *RecordsService) Create(domain string, recordAttributes Record) (Record, *Response, error) {
payload := s.client.CommonParams.toPayLoad()
payload.Add("domain_id", domain)
.....
}
不知道是不是 DnsPod 文档更新了,这里如果将域名传递给 domain_id 提交会报错:could not get domains: 域名编号不正确
个人将 domain_id 更换成 domain 字段就能正常创建。
The text was updated successfully, but these errors were encountered: