Browse Source

Merge 4b0b0ff75f into 40b6db6a27

pull/4235/merge
Aleksei Tasenko 3 weeks ago
committed by GitHub
parent
commit
1d72dcc75f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      dnsapi/dns_nic.sh

2
dnsapi/dns_nic.sh

@ -140,7 +140,7 @@ _nic_get_authtoken() {
res=$(_post "grant_type=password&username=${NIC_Username}&password=${NIC_Password}&scope=%28GET%7CPUT%7CPOST%7CDELETE%29%3A%2Fdns-master%2F.%2B" "$NIC_Api/oauth/token" "" "POST") res=$(_post "grant_type=password&username=${NIC_Username}&password=${NIC_Password}&scope=%28GET%7CPUT%7CPOST%7CDELETE%29%3A%2Fdns-master%2F.%2B" "$NIC_Api/oauth/token" "" "POST")
if _contains "$res" "access_token"; then if _contains "$res" "access_token"; then
_auth_token=$(printf "%s" "$res" | cut -d , -f2 | tr -d "\"" | sed "s/access_token://")
_auth_token=$(printf "%s" "$res" | cut -d , -f1 | tr -d "{" | tr -d "\"" | sed "s/access_token://")
_info "Token received" _info "Token received"
_debug _auth_token "$_auth_token" _debug _auth_token "$_auth_token"
return 0 return 0

Loading…
Cancel
Save