FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. Tags
    3. python
    Log in to post
    • All categories
    • A

      Advice in Python Flask Framework

      Q&A
      • flask python • • aartiyadavpersonal
      5
      0
      Votes
      5
      Posts
      1.3k
      Views

      S

      @aartiyadavpersonal said in Advice in Python Flask Framework:

      flask framework based projects?

      Here are a few of them:

      Weather App using Flask Full Stack Social Network App Portfolio Website using Flask Rest API with Flask Feedback Form using Flask Deploy Machine Learning Models using Flask Blog App using Flask

      Also, you can start with these tutorials.

    • A

      Token type?

      Q&A
      • jwt access tokens python fusionauth • • AliMirlou
      3
      0
      Votes
      3
      Posts
      6.6k
      Views

      A

      Seems like the library I used is opinionated. Thanks for the hints.

    • N

      Trouble getting the user object post login

      Q&A
      • login python sessions user • • nishant
      16
      0
      Votes
      16
      Posts
      12.1k
      Views

      A

      @dan Thank you for your support. Fixing the signature just saved me another couple of hours (also coming from https://fusionauth.io/blog/2020/07/14/django-and-oauth/) ^^

    • danD

      Solved What are the strengths of FusionAuth compared to an open source library like django-allauth?

      Q&A
      • django python open source • • dan
      2
      0
      Votes
      2
      Posts
      1.2k
      Views

      danD

      First, django-allauth supports an impressive list of providers. FusionAuth can support most of them using our generic OIDC connector, but kudos to the django-allauth team! If you are sure you only are building one django app, it's a good choice (and way better than rolling your own auth lib--please don't do that).

      I'm not super familiar with django-allauth, but I did a bit of research. I think the reasons to use FusionAuth rather than django-allauth are:

      centralized user management and control, even if you use a social provider. This scales to multiple applications within one tenant (so a django app and an open source forum app like nodebb can share a userbase; each user has the same username/email and password for each app) and multiple tenants (so you can have django app A and django app B totally separated, with different usernames/emails and passwords, if you're whitelabelling your app) ability to integrate with other auth providers using non OAuth protocols, like SAML FA is a single app, as opposed to a set of extensions you need to find, merge together, and keep in sync. You just drop it in and it works. additional features that you might not know you need until you need them (and have to build or evaluate/integrate a different library): passwordless consents family grouping webhooks for integration on user changes user actions groups jwt generation DAU/MAU reporting 2fa (I saw a 2fa plugin for this, but it was supported version 0.25 and django-allauth is at 0.42)

      In short, FA is a full user management system, as opposed to an authentication and authorization plugin like django-allauth.

    • S

      Solved No Refresh Tokens from grant_type = authorizazion_code; python

      Q&A
      • python refresh token • • sven.richter86
      3
      1
      Votes
      3
      Posts
      9.7k
      Views

      S

      Great thanks, that solved it.

    • danD

      Do you have an example project using Flask?

      Q&A
      • python example app faq • • dan
      3
      0
      Votes
      3
      Posts
      1.3k
      Views

      danD

      Here's an example using flask: https://github.com/FusionAuth/fusionauth-example-flask-portal

      You can see all the example apps here: https://fusionauth.io/docs/v1/tech/example-apps/