Great, I just got an error when I try to login the app the access is blocked
@careyakida74357 ай бұрын
You're a saviour man, bless you
@saudenetwork Жыл бұрын
Parabéns Vincent Stevenson por seu trabalho! De forma didática você transformou algo difícil em uma maneira fácil (Congratulations Vincent Stevenson for your work! In a didactic way you have transformed something difficult into an easy way).
@mmcuser Жыл бұрын
I dont get why the flask secret key need to match the google client secret! can someone explain?
@sukumar6723 Жыл бұрын
How to remove cached session so that we can make user to login every time
@mananshah27237 ай бұрын
I am getting this error, can anyone help? [GSI_LOGGER]: The given login_uri is not allowed for the given client ID.
@peachyme1401 Жыл бұрын
Really helpful and easy to follow!
@JWJD99 Жыл бұрын
Thanks Vincent! Great walkthrough
@zgong18648 ай бұрын
Towards the end of the video, you mention that someone could gain unauthorized access by adding a session variable locally. I was under the impression that session variables are stored and managed on the server side, which is why they are used instead of cookies in many cases. Is this not true?
@The_Muslim_Vibe_3166 ай бұрын
session variables are stored on front end. they can be viewed and edited by users
@zenkira_4 ай бұрын
The session is just a cookie, so it's stored in the client side, but its content is signed with the Flask app's secret using the itsdangerous library, so you won't be able to make any sense of it unless you have the correct key
@MrDelliSanti2 жыл бұрын
Thanks for putting this together.
@mcnutley Жыл бұрын
I'm getting "This site can’t be reachedlocalhost refused to connect."
@CarlosHernandez-pl4vs Жыл бұрын
Check that your redirect url is set the the correct address
@СавелийГрабовый Жыл бұрын
Hi! I'm getting a similar error. Have you found a way to solve this?
@carlosaugusto-mo2hb Жыл бұрын
I really didn’t understand what client_secret_files is for and they you created. I’m really confused
@VincentStevenson Жыл бұрын
The client secret file is how you register your app with google so they can authenticate your app with them for their authentication flow.
@carlosaugusto-mo2hb Жыл бұрын
@@VincentStevenson nice, but can I just create the file manually without using "os" library and copy-paste the content from google ?
@CognitiveCore Жыл бұрын
@@carlosaugusto-mo2hb you can use that as string I think
@AnuragHalderEcon6 ай бұрын
This is very useful, thank you, can you please help in case I need to protect more than one page. Thanks in advance.