How to implement Django social login using google for different type of users(eg: candidate ,employer, customer)

Viewed 218

I want to implement Social login in my Django project. When I searched about it, I found social login for only one user. But I want to implement it for different type of users as I mentioned in the title. Can anyone suggest a solution to implement this in my project.

1 Answers

You can allow auto-registration to everybody. But, to be registered on your app doesn't mean user can do anything in app. Only users on group candidate , employer or customer are allowed to see data or perform operations in app.

Then, you can create views on your app to put users on group. For example, a user of the grup employer can assign users to group customer.

Related