From 7051ad3a04b24a80c52b292a9e8cf7b58cbecdfa Mon Sep 17 00:00:00 2001 From: Ste Vaidis Date: Sun, 15 Dec 2024 10:45:21 +0200 Subject: [PATCH] Update OAuth2.md --- OAuth2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OAuth2.md b/OAuth2.md index 95e3737..b4fc2ef 100644 --- a/OAuth2.md +++ b/OAuth2.md @@ -27,7 +27,7 @@ GET https://accounts.google.com/o/oauth2/v2/auth? ``` - `response_type=code`: This indicates you're using the "authorization code" flow. -- `client_id`: Your Google API client ID. +- `client_id`: Your Google API client ID. Created by the developers of the `xorismesiti.gr` on the google API console. - `redirect_uri`: The URI Google will redirect to after the user consents. - `scope`: The permissions you're requesting (e.g., email, profile). - `state`: A random string to protect against CSRF attacks.