Это видео недоступно.
Сожалеем об этом.

Add Google Hosted Authentication to a Python Flask App

Поделиться
HTML-код
  • Опубликовано: 21 дек 2022
  • I walk through how to register your own service with Google so that you can use Google Hosted Authentication via OAuth 2.0 for Flask web applications. Full credit goes to code-specialis.... Here's the link to my Dockerized clone of Yannic's repo: github.com/vas...

Комментарии • 19

  • @saudenetwork
    @saudenetwork Год назад +1

    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).

  • @careyakida7435
    @careyakida7435 2 месяца назад

    You're a saviour man, bless you

  • @peachyme1401
    @peachyme1401 Год назад +2

    Really helpful and easy to follow!

  • @mmcuser
    @mmcuser 11 месяцев назад +2

    I dont get why the flask secret key need to match the google client secret! can someone explain?

  • @JWJD99
    @JWJD99 11 месяцев назад

    Thanks Vincent! Great walkthrough

  • @sukumar6723
    @sukumar6723 Год назад +1

    How to remove cached session so that we can make user to login every time

  • @mananshah2723
    @mananshah2723 2 месяца назад

    I am getting this error, can anyone help?
    [GSI_LOGGER]: The given login_uri is not allowed for the given client ID.

  • @robinchriqui2407
    @robinchriqui2407 6 месяцев назад +1

    Great, I just got an error when I try to login the app the access is blocked

  • @MrDelliSanti
    @MrDelliSanti Год назад

    Thanks for putting this together.

  • @AnuragHalderEcon
    @AnuragHalderEcon Месяц назад

    This is very useful, thank you, can you please help in case I need to protect more than one page. Thanks in advance.

  • @zgong1864
    @zgong1864 3 месяца назад

    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?

    • @ZootedRambler
      @ZootedRambler Месяц назад

      session variables are stored on front end. they can be viewed and edited by users

  • @carlosaugusto-mo2hb
    @carlosaugusto-mo2hb Год назад

    I really didn’t understand what client_secret_files is for and they you created.
    I’m really confused

    • @VincentStevenson
      @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
      @carlosaugusto-mo2hb Год назад

      @@VincentStevenson nice, but can I just create the file manually without using "os" library and copy-paste the content from google ?

    • @CognitiveCore
      @CognitiveCore Год назад

      @@carlosaugusto-mo2hb you can use that as string I think

  • @mcnutley
    @mcnutley Год назад

    I'm getting "This site can’t be reachedlocalhost refused to connect."

    • @CarlosHernandez-pl4vs
      @CarlosHernandez-pl4vs Год назад

      Check that your redirect url is set the the correct address

    • @user-il5og4tq5c
      @user-il5og4tq5c 9 месяцев назад

      Hi! I'm getting a similar error. Have you found a way to solve this?