From 56b95e97592904235b4409f7a7c2a62b5b62b696 Mon Sep 17 00:00:00 2001 From: Bill Gertz Date: Tue, 15 Oct 2019 17:33:37 +0200 Subject: [PATCH] Better spacing around code blob --- DNS-API-Dev-Guide.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DNS-API-Dev-Guide.md b/DNS-API-Dev-Guide.md index 3ca81f2..93371da 100644 --- a/DNS-API-Dev-Guide.md +++ b/DNS-API-Dev-Guide.md @@ -186,12 +186,14 @@ Your HTTP method call may require additional headers for Authorization, ContentT ```sh ... + myusername="$MYAPI_username" mypassword="$MYAPI_password" mycredentials="$(printf "%s" "$myusername:$mypassword" | _base64)" export _H1="Authorization: Basic $mycredentials" export _H2="ContentType: application/json" + ... ```