Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8857633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:38:18+00:00 2026-06-14T14:38:18+00:00

I am using django social auth for social network login into my site and

  • 0

I am using django social auth for social network login into my site and it works fine the user info is stored in the User model. But i have another model(ExtraInfo) that inherits the user model to store extra data. How do i create an new instance in the sub-model(ExtraInfo) when a new user is created in the User model by django social auth

I tried SOCIAL_AUTH_USER_MODEL = ‘myapp.CustomUser’ but this does not work since create_user method is not available for the sub-model

class ExtraInfo(User):
      phoneNo = models.CharField(max_length = 30)
      city = models.CharField(max_length = 30)
      state = models.CharField(max_length = 30)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T14:38:19+00:00Added an answer on June 14, 2026 at 2:38 pm

    As per Django docs, the recommended way to add attributes for a User is to use OneToOneField instead of subclassing like:

    class ExtraInfo(models.Model):
        user = models.OneToOneField(User, related_name='extra_info')
        phoneNo = models.CharField(max_length = 30)
        city = models.CharField(max_length = 30)
        state = models.CharField(max_length = 30)
    

    As for your problem, you can connect to Django’s post_save signal (docs) and then whenever created parameter will be True, then create an ExtraInfo model for that new user.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using django-social-auth for facebook login. I am able to login user using
Am using django social-auth authentication for my app.After login to facebook or twitter from
I have started using https://github.com/omab/django-social-auth and been successfully able to login via twitter, google
Using django-social-auth to grab user data from facebook, it is returning a list of
For my site I am using Django auth app and django-social-auth ( https://github.com/omab/django-social-auth )
django-social-auth redirects me to /mypage#_=_ when using the the Facebook backend. As I am
We are using django and django-socialauth for auth with google/fb/twitter but there is a
Using Django 1.1.1 In models.py: class Site(models.Model): name = models.CharField(max_length=50) class SiteMonth(models.Model): site =
I am trying to use django-social-auth to allow my users to log into the
I'm using Django-social-auth for the first time, and it seems that all the new

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.