From c09f190712cec94766ab03a0fa4d8749f2a7cb3e Mon Sep 17 00:00:00 2001 From: Buckaroo Banzai <39065740+BuckarooBanzay@users.noreply.github.com> Date: Tue, 31 Oct 2023 21:57:23 +0100 Subject: [PATCH] Add missing `\` in oauth curl example (#486) Co-authored-by: BuckarooBanzay --- app/flatpages/help/oauth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/flatpages/help/oauth.md b/app/flatpages/help/oauth.md index 75582e3b..4b5dccab 100644 --- a/app/flatpages/help/oauth.md +++ b/app/flatpages/help/oauth.md @@ -53,7 +53,7 @@ Do this by making a POST request to the `/oauth/token/` API: ```bash curl -X POST https://content.minetest.net/oauth/token/ \ - -F grant_type=authorization_code + -F grant_type=authorization_code \ -F client_id="CLIENT_ID" \ -F client_secret="CLIENT_SECRET" \ -F code="abcdef"