GithubHelp home page GithubHelp logo

Comments (4)

omab avatar omab commented on June 24, 2024

@gsakkis, get_user_details() should be defined on the backend that works with django-auth mechanism, while user_data() belongs to the authentication class used by DSA. In your case user_data() should call that service and retrieve the needed user information, then on get_user_details() you should transform that data into the expected format for DSA which is:

{
    'username': <username if any>,
    'email': <user email if any>,
    'fullname': <user full name if any>,
    'first_name': <user first name if any>,
    'last_name': <user last name if any>
}

from python-social-auth.

gsakkis avatar gsakkis commented on June 24, 2024

Ah, so the response parameter of get_user_details() is the result of user_data(); I thought they were called in the opposite order.

Pull request coming soon, thanks!

from python-social-auth.

omab avatar omab commented on June 24, 2024

@gsakkis, when I wrote my previous reply I thought I was on django-social-auth project, not python-social-auth, it still applies (kinda), so let me rewrite it.

user_data() should call the service that provide the extra user information, then get_user_details() must transform it to into the format that PSA expect, which is:

{
    'username': <username if any>,
    'email': <user email if any>,
    'fullname': <user full name if any>,
    'first_name': <user first name if any>,
    'last_name': <user last name if any>
}

from python-social-auth.

omab avatar omab commented on June 24, 2024

I think we can close this one.

from python-social-auth.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.