-
Notifications
You must be signed in to change notification settings - Fork 376
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: Add Naver To Provider #1251
base: master
Are you sure you want to change the base?
Conversation
How to get client_id and client_secret can be found in the guide at the link. However, NAVER DEVELOPERS, where the guide page is located, does not support English. (I don't really understand why either,,,) On the following site, a blogger has recorded the process of using the NAVER Login API, which may be helpful. https://medium.com/@monsoonkhadka8/naver-login-api-interworking-php-in-english-df14b66c824e If you need it, you need to request an official guide in English from the site. |
Can we please merge this PR?
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// func (ts *ExternalTestSuite) TestSignupExternalNaverErrorWhenVerifiedFalse() { | ||
// tokenCount, userCount := 0, 0 | ||
// code := "authcode" | ||
// emails := `[{"email":"[email protected]", "primary": true, "verified": false}]` | ||
// server := NaverTestSignupSetup(ts, &tokenCount, &userCount, code, emails) | ||
// defer server.Close() | ||
|
||
// u := performAuthorization(ts, "naver", code, "") | ||
|
||
// v, err := url.ParseQuery(u.Fragment) | ||
// ts.Require().NoError(err) | ||
// ts.Equal("unauthorized_client", v.Get("error")) | ||
// ts.Equal("401", v.Get("error_code")) | ||
// ts.Equal("Unverified email with naver", v.Get("error_description")) | ||
// assertAuthorizationFailure(ts, u, "", "", "") | ||
// } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the commented-out code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, I just commented it out.
I'll remove it.
is there any update on this? Koreans will be very happy if this PR is merged. |
@minyoon any updates on this pr? |
@inspirit941 I am not affiliated with Supabase, so I cannot merge this PR. |
What kind of change does this PR introduce?
Add Naver to external provider
What is the current behavior?
Nothing. It's a new feature.
What is the new behavior?
The users can select Naver as an external provider.
Additional context
Naver is a Google-like portal site that supports social login for most services in Korea.
Naver has just as many users in Korea as Kakao, so I was surprised that there was no feature request to add Naver as a provider in the issues.
If Naver is added as an external provider, Koreans, including me, will be very happy.