I want to develop the web using Janggo.

Asked 2 years ago, Updated 2 years ago, 52 views

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

2022-09-22 19:26

1 Answers

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.


2022-09-22 19:26

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.