Better spacing around code blob

master
Bill Gertz 2019-10-15 17:33:37 +02:00
parent c263e2615d
commit 56b95e9759
1 changed files with 2 additions and 0 deletions

@ -186,12 +186,14 @@ Your HTTP method call may require additional headers for Authorization, ContentT
```sh ```sh
... ...
myusername="$MYAPI_username" myusername="$MYAPI_username"
mypassword="$MYAPI_password" mypassword="$MYAPI_password"
mycredentials="$(printf "%s" "$myusername:$mypassword" | _base64)" mycredentials="$(printf "%s" "$myusername:$mypassword" | _base64)"
export _H1="Authorization: Basic $mycredentials" export _H1="Authorization: Basic $mycredentials"
export _H2="ContentType: application/json" export _H2="ContentType: application/json"
... ...
``` ```