Better spacing around code blob
parent
c263e2615d
commit
56b95e9759
|
@ -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"
|
||||||
|
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue