Replies: 1 comment
-
Authorization problems has revolved by using JWT. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We decided to use GitHub for user authentication, that is, login.
GitHub Oauth2 will be used to receive the authorization code, and the authorization code will be handed over to the server to receive the access code. It creates functions such as creating a repository with access codes generated in this process.
GitHub Oauth2를 활용하여 인가 코드를 받고, 해당 인가 코드를 서버에 넘겨서 엑세스 코드를 받을 수 있게 된다. 이 과정에서 생기는 엑세스 코드로 repository를 만드는 등의 기능을 만드는 것이다.
What I'm thinking here is, is it okay to use this access code for authorization.
Using the access code, if you send a request to GitHub, you can get information such as GitHub ID, and I am thinking of using this information as a unique value in user DB... If you think there will be a problem, please let me know.
여기서 내가 생각하고 있는 것은, 과연 이 엑세스 코드를 인가용으로 활용하는 것이 괜찮냐는 것이다.
엑세스 코드를 활용하면 GitHub에 요청을 보내게 되면 GitHub ID등의 정보를 얻을 수 있는데 user DB에 이 정보를 유니크값으로 활용할 생각에 있다... 혹시 문제가 있을것으로 보이면 얘기해주길 바란다.
Beta Was this translation helpful? Give feedback.
All reactions