From 13bc25748bf482ca461f27c256140102e7e8647a Mon Sep 17 00:00:00 2001 From: Ste Vaidis Date: Tue, 7 Jan 2025 15:10:22 +0200 Subject: [PATCH] Update OAuth2-Backend-Approach.md --- OAuth2-Backend-Approach.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OAuth2-Backend-Approach.md b/OAuth2-Backend-Approach.md index c72d5f1..3f9abe9 100644 --- a/OAuth2-Backend-Approach.md +++ b/OAuth2-Backend-Approach.md @@ -72,9 +72,9 @@ Content-Length: 0 # 2. Exchange Code with Token -1. Back **POST** the `code` to Google `https://oauth2.googleapis.com/token` -2. Google **response** to Back with an `access_token` and a `refresh token` -3. Back **response** to Front with the `access_token` in a `cookie` +1. Backend **POST** the `code` to Google `https://oauth2.googleapis.com/token` +2. Google **response** to Backend with an `access_token` and a `refresh token` +3. Backend **response** to Frontend with the `access_token` in a `cookie` ### 1. Back **POST** the `code` to Google