Skip to content

Commit 3c76ce5

Browse files
yakklegopherbot
authored andcommitted
endpoints: correct Naver OAuth2 endpoint URLs
Fixing an incorrect Naver OAuth2 endpoint URLs: AuthURL : https://developers.naver.com/docs/login/devguide/devguide.md#3-4-2-%EB%84%A4%EC%9D%B4%EB%B2%84-%EB%A1%9C%EA%B7%B8%EC%9D%B8-%EC%97%B0%EB%8F%99-url-%EC%83%9D%EC%84%B1%ED%95%98%EA%B8%B0 TokenURL : https://developers.naver.com/docs/login/devguide/devguide.md#3-4-4-%EC%A0%91%EA%B7%BC-%ED%86%A0%ED%81%B0-%EB%B0%9C%EA%B8%89-%EC%9A%94%EC%B2%AD Change-Id: Ie4e0f826af1854d3400525509d5d748ca8b8df74 GitHub-Last-Rev: b59d49a GitHub-Pull-Request: #784 Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/694235 Reviewed-by: Sean Liao <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: David Chase <[email protected]> Auto-Submit: Sean Liao <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent cf14319 commit 3c76ce5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

endpoints/endpoints.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ var Microsoft = oauth2.Endpoint{
204204
//
205205
// Documentation: https://developers.naver.com/docs/login/devguide/devguide.md
206206
var Naver = oauth2.Endpoint{
207-
AuthURL: "https://nid.naver.com/oauth2/authorize",
208-
TokenURL: "https://nid.naver.com/oauth2/token",
207+
AuthURL: "https://nid.naver.com/oauth2.0/authorize",
208+
TokenURL: "https://nid.naver.com/oauth2.0/token",
209209
}
210210

211211
// NokiaHealth is the endpoint for Nokia Health.

0 commit comments

Comments
 (0)