Quickly Authenticate Users with FastAPI and Token Authentication

Поделиться
HTML-код
  • Опубликовано: 6 июн 2024
  • In this 2 part series on API Authentication, Tim from @TechWithTim explains how to build an authenticated API using python and Fast API. In this first episode, we'll cover how to set up a FastAPI project and start using tokens to authenticate users. Be sure to subscribe to catch the second video in this series.
    Chapters:
    0:00 - Introduction
    1:58 - Install Python Packages
    4:36 - FastAPI import and Project Setup
    7:08 - Access FastAPI documentation
    8:48 - Using Query and Path Parameters
    11:03 - How to Accept API Requests
    13:30 - Set up API User Authentication
    19:36 - Hashing and Authenticating Passwords
    26:30 - Create an Access Token based on Login Data
    33:50 - Writing a Token Root
    40:51 - Testing Token Authorization
    45:31 - Conclusion
    New to Cloud Computing? Get started here with a $100 credit → www.linode.com/lp/youtube-vie...
    Check out Tim's code on GitHub → github.com/techwithtim/Fast-A...
    Watch this video for an introduction to APIs → • Intro to APIs | What a...
    Read the guide on choosing a Python API framework → www.linode.com/docs/guides/ho...
    Subscribe to get notified of new episodes as they come out → ruclips.net/user/linode?sub_co...
    #Linode #FastAPI #API #TechWithTim
    Product: Linode, API, FastAPI; @TechWithTim
  • НаукаНаука

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

  • @DreamsAPI
    @DreamsAPI 9 месяцев назад +2

    Thank you Tim for teaching and sharing.
    To all, study, take breaks, apply knowledge and understanding, keep learning, before you know it your understanding is increasing and becomes comprehensible overtime.

    • @BonyLenta
      @BonyLenta 6 месяцев назад

      Thank you Tim for teaching and sharing. To all, study, take breaks, apply knowledge and understanding, keep learning, before you know it your understanding is increasing and becomes comprehensible overtime.

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

      Thank you Tim for teaching and sharing. To all, study, take breaks, apply knowledge and understanding, keep learning, before you know it your understanding is increasing and becomes comprehensible overtime.

  • @mohitashliya8750
    @mohitashliya8750 7 дней назад

    Thanks man , All my doubts regarding the Basemodels and those 2 astrisks and OAuth2 are cleared here.

  • @pradnyamane2619
    @pradnyamane2619 7 месяцев назад

    Thanks for video, and line by line explanation .. helpful for the user, using the OAUTH for first time.

  • @octaverossi3428
    @octaverossi3428 17 дней назад

    what a tutorial. Hats off for this one

  • @vengtCent
    @vengtCent 4 месяца назад

    Thank you Tim for sharing your knowledge although it's fastt paced i could follow pretty good.
    It would be nice if you'd explain the code more extensively. For example why did you chose to make the functions get_current_user and get_current_active_user async?

  • @saurabhbasak9545
    @saurabhbasak9545 Год назад +6

    Is there a second part?

  • @joaovictor-dl6ve
    @joaovictor-dl6ve 10 месяцев назад +1

    Is possible to create with Oauth a role and permission model similar to RBAC?

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

    This is quite confusing to be honest. But I appreciate its the nature of the topic, not the fault of the video. Will probably need to watch this again.

  • @TheSuloman20
    @TheSuloman20 7 месяцев назад +1

    Awesome, but i need second part, where is it?

  • @randomforest_dev
    @randomforest_dev 7 месяцев назад

    from what I previously understand, first user login with username and password from login form and gets jwt token, second user send that jwt token to protected api routes, middleware extract the token from header and check if it is valid or not and decides to continue or stop the request. But the logic in FastAPI is a bit complicated. why do I need to pass again the username and password to access every protected routes?

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

    But is there some info of path login , logout, signup?

  • @user-ng4pk4tt3v
    @user-ng4pk4tt3v Год назад

    thank you very much

  • @guneetsingh1416
    @guneetsingh1416 5 месяцев назад

    Is it possible not to give hardcoded db in the code, as its a senstive information.

  • @20_1_async
    @20_1_async Год назад +5

    For some this may be usefull, if you return an list and wnat to show it in docs response example, use response_model=list[schema] in api decorator. And with python 3.11 you do not need to use response_model var in api decorator but instead use function type hints as:
    async def my_func(…) -> list[schema]:
    FastAPI is the best :]

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

    im getting an error of "'openssl' is not recognized as an internal or external command,
    operable program or batch file." while creating Secret Key

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

      It could be that 'openssl' is not installed on your system. If you're using a Windows machine, this post comment from GitHub may be useful:
      github.com/facebook/flipper/issues/3294#issuecomment-1014466972
      Alternatively, you can check out this Stack Exchange post for installation instructions on other Operating Systems:
      stackoverflow.com/questions/9001316/how-to-install-openssl-for-python

  • @basembarakat
    @basembarakat 5 месяцев назад

    Thanks for the tutorial. Wondering when the token expiration time is checked? Does jwt.decode check this internally?

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

    great video thank you Tim .

  • @parij4840
    @parij4840 10 месяцев назад

    How to test the same on Postman instead of Swagger?

    • @saif201048
      @saif201048 10 месяцев назад

      You need to make a request from postman to your API endpoint and pass the token in auth section or in the headers.

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

    got stuck on the openssl rannd -hex 32 bit. installed pyopenssl. pip list shows its installed. terminal says there is no such module. tried to add it to path but couldnt find the file for it.
    If i cant even follow a tutorial , should i just give up on programming? i swear to god nothing ever works when i try and do it

    • @nicofabregues
      @nicofabregues 11 месяцев назад +3

      it´s part of the game my friend. I encourage you to keep going, but know that in order to be a programmer the most difficult task it is not how to code a complex method, but to know how to solve a problem. Cause everything its already made, we programmers only copy code from the web and make it work. Search your error, find an alternate path or ask for help, there is no other way than facing the problem and to keep trying for pointless hours until somehow it works, at first you re not going to understand how it happened, but as life keeps going it´s all going to start being easy and making sense

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

      Don't give up Daniel! The odds are that someone else has also had this same issue. This guide has instructions for troubleshooting "No module named 'OpenSSL' in Python":
      bobbyhadz.com/blog/python-no-module-named-openssl
      Also, if you need to find the file path for the command, you can use the 'which' command on a Linux system and the 'where' command on a Windows machine.
      superuser.com/questions/49104/how-do-i-find-the-location-of-an-executable-in-windows
      linuxize.com/post/linux-which-command/

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

    I have facing a problem in line 98 where it says db is not defined I don't really see db written or defined in your code but I see that we have named it fake_db. so what is happening ?

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

      ok it seems it was some error in the code even in Tim's perspective he fixes it at time 41:42

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

      You can find the code for this tutorial in the techwithtim GitHub repo. You should be able cross reference your code with what is available here:
      github.com/techwithtim/Fast-API-Tutorial/blob/94c7e9ae19d45b8cdda7e068fe156e4b548c91f3/main.py#L98

    • @purnaschicago
      @purnaschicago 7 месяцев назад

      @@AkamaiDeveloper It will be very helpful if you can add the link to the repo in the video description.

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

    Would the same logic apply if I'd use Templates (jinja2) to display a frontend?

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

      Yes and you would have to use key words in templates to display values in front

  • @user-on9bn1co8w
    @user-on9bn1co8w 10 месяцев назад

    How to install fastapi with out internet

  • @MrRobott88
    @MrRobott88 Месяц назад +1

    Python not always is simple. PHP Sessions wins! 😂

  • @CrashingPotatoEngineer
    @CrashingPotatoEngineer 6 месяцев назад +2

    I'm sure this is helpful for a lot of new developers, but bare metal?

    • @nobytes2
      @nobytes2 5 месяцев назад

      This isn't bare metal since there's an OS on top of the hardware. I assume you want docker, but if you know docker then use it, take the knowledge from this video and use containers, should be easy since you imply you're not a new dev.

    • @CrashingPotatoEngineer
      @CrashingPotatoEngineer 5 месяцев назад +1

      @@nobytes2 Hehe I forgot about this video. Sorry I don't remember docker being brought up. Yeah this is just RUclips auto play in action. So what I meant is that users are going to screw up their OS if they don't use a virtual environment when they install packages.

    • @nobytes2
      @nobytes2 5 месяцев назад

      @@CrashingPotatoEngineer ah ok gotcha makes sense, yeah lots of tuts don't use virtual environments. Nowadays I use poetry instead of venv.

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

    just to increase length of video you make it complex.

  • @yujia562
    @yujia562 11 месяцев назад +8

    why dont you just tell me this is an example on their documen.. waste damn time

  • @DARKarknar
    @DARKarknar 5 месяцев назад

    45:33

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

    aweful video!

    • @wylde780
      @wylde780 8 месяцев назад +4

      Why would you take the time to insult someone who put effort into sharing his knowledge with the community?

    • @xuantungnguyen9719
      @xuantungnguyen9719 5 месяцев назад +1

      I agree. All he did is just typing and typing. Very little intuition.

  • @Lexaire
    @Lexaire 3 месяца назад +4

    You just stole the tutorial from the official FastAPI docs.

  • @Perdite_smachno
    @Perdite_smachno 6 месяцев назад

    Гашиш в русском переводе, норм перевод

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

    Well. For an API, I would probably NEVER EVER use a program!!!

    • @mindurownbussines
      @mindurownbussines Год назад +8

      What does that even mean ?

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

      I, too, have no idea what this means.

    • @7dainis777
      @7dainis777 Год назад

      Your comment does not make sense. What do you mean?

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

      If you're not using a program for an API, how are you handling API's? On paper?