I'd like to develop the web using a long storage device.
I want to use Naver's login.
In other words, validation of ID and password is
Naver's https://ndim.da.naver.com/sso/auth If you try to do it here
In that case, is it right that there is no need to create a model that contains the user's information?
django python
User models are required in most cases, even with external login (Facebook/Github/Naver, etc.).
For example, you need a user model to leave a question or a post about who wrote it. If you need to log in, most of the activities will work in the form of 'who did 000' based on user, so it is necessary.
So even if you don't have a password, you will need a user model with an ID.
© 2024 OneMinuteCode. All rights reserved.