sending now a patch request to update the IP

This commit is contained in:
James Tombleson 2022-08-19 21:35:44 +00:00
parent e403885aa5
commit 1e3113c2c0
1 changed files with 2 additions and 2 deletions

View File

@ -225,7 +225,7 @@ func (c *CloudFlareClient) UpdateDnsEntry(DomainId string, DnsDetails *DnsDetail
return err
}
req, err := http.NewRequest("GET", endpoint, bytes.NewBuffer(body))
req, err := http.NewRequest("PATCH", endpoint, bytes.NewBuffer(body))
if err != nil {
return err
}
@ -243,6 +243,6 @@ func (c *CloudFlareClient) UpdateDnsEntry(DomainId string, DnsDetails *DnsDetail
return errors.New("failed to update the IP address")
}
//log.Print(resp)
log.Println("IP Address request was sent and no errors reported.")
return nil
}