Browse Source
Merge pull request #3978 from nikolajbrinch/dev
Fixes Simply.com to use REST API version 2 with Basic Auth
pull/4006/head
neil
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
11 additions and
5 deletions
-
dnsapi/dns_simply.sh
|
@ -5,8 +5,8 @@ |
|
|
#SIMPLY_AccountName="accountname" |
|
|
#SIMPLY_AccountName="accountname" |
|
|
#SIMPLY_ApiKey="apikey" |
|
|
#SIMPLY_ApiKey="apikey" |
|
|
# |
|
|
# |
|
|
#SIMPLY_Api="https://api.simply.com/1/[ACCOUNTNAME]/[APIKEY]" |
|
|
|
|
|
SIMPLY_Api_Default="https://api.simply.com/1" |
|
|
|
|
|
|
|
|
#SIMPLY_Api="https://api.simply.com/2/" |
|
|
|
|
|
SIMPLY_Api_Default="https://api.simply.com/2" |
|
|
|
|
|
|
|
|
#This is used for determining success of REST call |
|
|
#This is used for determining success of REST call |
|
|
SIMPLY_SUCCESS_CODE='"status":200' |
|
|
SIMPLY_SUCCESS_CODE='"status":200' |
|
@ -237,12 +237,18 @@ _simply_rest() { |
|
|
_debug2 ep "$ep" |
|
|
_debug2 ep "$ep" |
|
|
_debug2 m "$m" |
|
|
_debug2 m "$m" |
|
|
|
|
|
|
|
|
export _H1="Content-Type: application/json" |
|
|
|
|
|
|
|
|
basicauth=$(printf "%s:%s" "$SIMPLY_AccountName" "$SIMPLY_ApiKey" | _base64) |
|
|
|
|
|
|
|
|
|
|
|
if [ "$basicauth" ]; then |
|
|
|
|
|
export _H1="Authorization: Basic $basicauth" |
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
export _H2="Content-Type: application/json" |
|
|
|
|
|
|
|
|
if [ "$m" != "GET" ]; then |
|
|
if [ "$m" != "GET" ]; then |
|
|
response="$(_post "$data" "$SIMPLY_Api/$SIMPLY_AccountName/$SIMPLY_ApiKey/$ep" "" "$m")" |
|
|
|
|
|
|
|
|
response="$(_post "$data" "$SIMPLY_Api/$ep" "" "$m")" |
|
|
else |
|
|
else |
|
|
response="$(_get "$SIMPLY_Api/$SIMPLY_AccountName/$SIMPLY_ApiKey/$ep")" |
|
|
|
|
|
|
|
|
response="$(_get "$SIMPLY_Api/$ep")" |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
if [ "$?" != "0" ]; then |
|
|
if [ "$?" != "0" ]; then |
|
|