mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-09 16:01:46 +00:00
fix: token request body quoting
This commit is contained in:
parent
f46ee93597
commit
95f1336060
@ -166,7 +166,6 @@ _initAuth() {
|
|||||||
# authentication. This works arounds this by using an undocumented MB API to obtain a token not tied to an
|
# authentication. This works arounds this by using an undocumented MB API to obtain a token not tied to an
|
||||||
# IP just for the github tests.
|
# IP just for the github tests.
|
||||||
_oauth2() {
|
_oauth2() {
|
||||||
_info "DOMAIN: $TEST_DNS"
|
|
||||||
if [ "$TEST_DNS" != "dns_mythic_beasts" ]; then
|
if [ "$TEST_DNS" != "dns_mythic_beasts" ]; then
|
||||||
_oauth2_std
|
_oauth2_std
|
||||||
else
|
else
|
||||||
@ -204,7 +203,7 @@ _oauth2_std() {
|
|||||||
_oauth2_github() {
|
_oauth2_github() {
|
||||||
_H1="Accepts: application/json"
|
_H1="Accepts: application/json"
|
||||||
export _H1
|
export _H1
|
||||||
body="{\"login\":{\"handle\":$MB_AK,\"pass\":$MB_AS,\"floating\":1}}"
|
body="{\"login\":{\"handle\":\"$MB_AK\",\"pass\":\"$MB_AS\",\"floating\":1}}"
|
||||||
|
|
||||||
_info "Getting Floating token..."
|
_info "Getting Floating token..."
|
||||||
# body url [needbase64] [POST|PUT|DELETE] [ContentType]
|
# body url [needbase64] [POST|PUT|DELETE] [ContentType]
|
||||||
|
Loading…
Reference in New Issue
Block a user