From 306bbfc03c2c74c89427a46a3665df467ee6c9b9 Mon Sep 17 00:00:00 2001 From: Griffin Baxter <47467946+GriffinBaxter@users.noreply.github.com> Date: Tue, 30 Jul 2024 00:51:05 +1200 Subject: [PATCH] Add missing "?" in query parameter example (#2261) --- docs/auth_api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/auth_api.md b/docs/auth_api.md index c3b3ac29..18caca57 100644 --- a/docs/auth_api.md +++ b/docs/auth_api.md @@ -54,7 +54,7 @@ http://your-instance.com/auth/authorize? The user will navigate to this link and be presented with instructions to log in and authorize your application. Once authorized, the user will be redirected back to the passed in redirect uri with the authorization code and state as part of the query parameters. Example: ```txt -https://hass-auth-demo.glitch.me/auth_callback +https://hass-auth-demo.glitch.me/auth_callback? code=12345& state=http%3A%2F%2Fhassio.local%3A8123 ```