mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2025-06-25 15:32:50 +00:00
Fixed again API endpoint url for shcheck test
This commit is contained in:
parent
1e80d8279b
commit
80aa60c38f
@ -18,7 +18,7 @@ dns_japi_add() {
|
|||||||
|
|
||||||
fulldomain=$1
|
fulldomain=$1
|
||||||
txtvalue=$2
|
txtvalue=$2
|
||||||
apiendpoint="https://api.dnsexit.com/dns/"
|
JAPIendpoint="https://api.dnsexit.com/dns/"
|
||||||
#_debug "Domain being used with custom script is: $domain"
|
#_debug "Domain being used with custom script is: $domain"
|
||||||
fullchallengedomain="${JAPI_domain:-$(_readaccountconf_mutable JAPI_domain)}"
|
fullchallengedomain="${JAPI_domain:-$(_readaccountconf_mutable JAPI_domain)}"
|
||||||
_debug "Full Challenge Domain is: $fullchallengedomain"
|
_debug "Full Challenge Domain is: $fullchallengedomain"
|
||||||
@ -49,7 +49,7 @@ dns_japi_add() {
|
|||||||
_debug txtvalue "$txtvalue"
|
_debug txtvalue "$txtvalue"
|
||||||
#_err "Not implemented!"
|
#_err "Not implemented!"
|
||||||
|
|
||||||
response="$(_post "{\"domain\":\"$domain\",\"update\": {\"type\":\"TXT\",\"name\":\"$fullchallengedomain\",\"content\":\"$txtvalue\",\"ttl\":0}}" $apiendpoint "" POST "application/json")"
|
response="$(_post "{\"domain\":\"$domain\",\"update\": {\"type\":\"TXT\",\"name\":\"$fullchallengedomain\",\"content\":\"$txtvalue\",\"ttl\":0}}" $JAPIendpoint "" POST "application/json")"
|
||||||
if ! printf "%s" "$response" | grep \"code\":0>/dev/null; then
|
if ! printf "%s" "$response" | grep \"code\":0>/dev/null; then
|
||||||
_err "There was an error updating the TXT record..."
|
_err "There was an error updating the TXT record..."
|
||||||
_err "DNS Exit API response: $response"
|
_err "DNS Exit API response: $response"
|
||||||
@ -63,7 +63,7 @@ dns_japi_add() {
|
|||||||
dns_japi_rm() {
|
dns_japi_rm() {
|
||||||
fulldomain=$1
|
fulldomain=$1
|
||||||
txtvalue=$2
|
txtvalue=$2
|
||||||
apiendpoint="https://api.dnsexit.com/dns/"
|
JAPIendpoint="https://api.dnsexit.com/dns/"
|
||||||
#_debug "Domain being used with custom script is: $domain"
|
#_debug "Domain being used with custom script is: $domain"
|
||||||
fullchallengedomain="${JAPI_domain:-$(_readaccountconf_mutable JAPI_domain)}"
|
fullchallengedomain="${JAPI_domain:-$(_readaccountconf_mutable JAPI_domain)}"
|
||||||
_debug "Full Challenge Domain is: $fullchallengedomain"
|
_debug "Full Challenge Domain is: $fullchallengedomain"
|
||||||
@ -88,7 +88,8 @@ dns_japi_rm() {
|
|||||||
_debug "Full Challenge domain: $fullchallengedomain"
|
_debug "Full Challenge domain: $fullchallengedomain"
|
||||||
_debug txtvalue "$txtvalue"
|
_debug txtvalue "$txtvalue"
|
||||||
#_err "Not implemented!"
|
#_err "Not implemented!"
|
||||||
response="$(_post "{\"domain\":\"$domain\",\"delete\": {\"type\":\"TXT\",\"name\":\"$fullchallengedomain\",\"content\":\"$txtvalue\",\"ttl\":0}}" $apiendpoint "" POST "application/json")"
|
|
||||||
|
response="$(_post "{\"domain\":\"$domain\",\"delete\": {\"type\":\"TXT\",\"name\":\"$fullchallengedomain\",\"content\":\"$txtvalue\",\"ttl\":0}}" $JAPIendpoint "" POST "application/json")"
|
||||||
if ! printf "%s" "$response" | grep \"code\":0>/dev/null; then
|
if ! printf "%s" "$response" | grep \"code\":0>/dev/null; then
|
||||||
_err "There was an error deleting the TXT record..."
|
_err "There was an error deleting the TXT record..."
|
||||||
_err "DNS Exit API response: $response"
|
_err "DNS Exit API response: $response"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user