mirror of
https://github.com/aipeach/cloudflare-api-v4-ddns.git
synced 2025-01-18 13:59:28 +08:00
commit
23cc040704
4
cf-v4-ddns.sh
Normal file → Executable file
4
cf-v4-ddns.sh
Normal file → Executable file
@ -110,8 +110,8 @@ if [ -f $ID_FILE ] && [ $(wc -l $ID_FILE | cut -d " " -f 1) == 4 ] \
|
||||
CFRECORD_ID=$(sed -n '2,1p' "$ID_FILE")
|
||||
else
|
||||
echo "Updating zone_identifier & record_identifier"
|
||||
CFZONE_ID=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=$CFZONE_NAME" -H "Authorization: Bearer $CFKEY" -H "Content-Type: application/json" | grep -Po '(?<="id":")[^"]*' | head -1 )
|
||||
CFRECORD_ID=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones/$CFZONE_ID/dns_records?name=$CFRECORD_NAME" -H "Authorization: Bearer $CFKEY" -H "Content-Type: application/json" | grep -Po '(?<="id":")[^"]*' | head -1 )
|
||||
CFZONE_ID=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=$CFZONE_NAME" -H "Authorization: Bearer $CFKEY" -H "Content-Type: application/json" | grep -Eo '"id":"[^"]*'|sed 's/"id":"//' | head -1 )
|
||||
CFRECORD_ID=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones/$CFZONE_ID/dns_records?name=$CFRECORD_NAME" -H "Authorization: Bearer $CFKEY" -H "Content-Type: application/json" | grep -Eo '"id":"[^"]*'|sed 's/"id":"//' | head -1 )
|
||||
echo "$CFZONE_ID" > $ID_FILE
|
||||
echo "$CFRECORD_ID" >> $ID_FILE
|
||||
echo "$CFZONE_NAME" >> $ID_FILE
|
||||
|
Loading…
x
Reference in New Issue
Block a user