Browse Source

update dnspod.com api

MaysWind 4 years ago
parent
commit
5fbbc17376
1 changed files with 5 additions and 5 deletions
  1. 5 5
      dnsapi/dns_dpi.sh

+ 5 - 5
dnsapi/dns_dpi.sh

@@ -53,7 +53,7 @@ dns_dpi_rm() {
     return 1
     return 1
   fi
   fi
 
 
-  if ! _rest POST "Record.List" "user_token=$DPI_Id,$DPI_Key&format=json&domain_id=$_domain_id&sub_domain=$_sub_domain"; then
+  if ! _rest POST "Record.List" "login_token=$DPI_Id,$DPI_Key&format=json&domain_id=$_domain_id&sub_domain=$_sub_domain"; then
     _err "Record.Lis error."
     _err "Record.Lis error."
     return 1
     return 1
   fi
   fi
@@ -63,14 +63,14 @@ dns_dpi_rm() {
     return 0
     return 0
   fi
   fi
 
 
-  record_id=$(echo "$response" | _egrep_o '{[^{]*"value":"'"$txtvalue"'"' | cut -d , -f 1 | cut -d : -f 2 | tr -d \")
+  record_id=$(echo "$response" | tr "{" "\n" | grep -- "$txtvalue" | grep '^"id"' | cut -d : -f 2 | cut -d '"' -f 2)
   _debug record_id "$record_id"
   _debug record_id "$record_id"
   if [ -z "$record_id" ]; then
   if [ -z "$record_id" ]; then
     _err "Can not get record id."
     _err "Can not get record id."
     return 1
     return 1
   fi
   fi
 
 
-  if ! _rest POST "Record.Remove" "user_token=$DPI_Id,$DPI_Key&format=json&domain_id=$_domain_id&record_id=$record_id"; then
+  if ! _rest POST "Record.Remove" "login_token=$DPI_Id,$DPI_Key&format=json&domain_id=$_domain_id&record_id=$record_id"; then
     _err "Record.Remove error."
     _err "Record.Remove error."
     return 1
     return 1
   fi
   fi
@@ -89,7 +89,7 @@ add_record() {
 
 
   _info "Adding record"
   _info "Adding record"
 
 
-  if ! _rest POST "Record.Create" "user_token=$DPI_Id,$DPI_Key&format=json&domain_id=$_domain_id&sub_domain=$_sub_domain&record_type=TXT&value=$txtvalue&record_line=default"; then
+  if ! _rest POST "Record.Create" "login_token=$DPI_Id,$DPI_Key&format=json&domain_id=$_domain_id&sub_domain=$_sub_domain&record_type=TXT&value=$txtvalue&record_line=default"; then
     return 1
     return 1
   fi
   fi
 
 
@@ -113,7 +113,7 @@ _get_root() {
       return 1
       return 1
     fi
     fi
 
 
-    if ! _rest POST "Domain.Info" "user_token=$DPI_Id,$DPI_Key&format=json&domain=$h"; then
+    if ! _rest POST "Domain.Info" "login_token=$DPI_Id,$DPI_Key&format=json&domain=$h"; then
       return 1
       return 1
     fi
     fi