From 1e09377600b2436b973513c3784e27ed09c4a6ec Mon Sep 17 00:00:00 2001 From: Firstnaruto Date: Tue, 28 Jan 2020 14:03:13 +0700 Subject: [PATCH 1/3] =?UTF-8?q?[=E2=9C=A8]=20Add=20OAuth2=20:=20new=20endp?= =?UTF-8?q?oint=20LINE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- line/line.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 line/line.go diff --git a/line/line.go b/line/line.go new file mode 100644 index 000000000..1c6892ded --- /dev/null +++ b/line/line.go @@ -0,0 +1,16 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package line provides constants for using OAuth2 to access LINE. +package line // import "golang.org/x/oauth2/line" + +import ( + "golang.org/x/oauth2" +) + +// Endpoint is LINE's OAuth 2.0 endpoint. +var Endpoint = oauth2.Endpoint{ + AuthURL: "https://access.line.me/oauth2/v2.1/authorize", + TokenURL: "https://api.line.me/oauth2/v2.1/token", +} From e0ee7e0eaf480416ad56cbfd389fc9df82a9f181 Mon Sep 17 00:00:00 2001 From: Firstnaruto Date: Tue, 28 Jan 2020 14:18:24 +0700 Subject: [PATCH 2/3] =?UTF-8?q?[=E2=9C=A8]=20endpoints:=20add=20new=20pack?= =?UTF-8?q?age=20for=20oauth2.Endpoint=20values?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- endpoints/endpoints.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/endpoints/endpoints.go b/endpoints/endpoints.go index 811e101f9..08b9ff711 100644 --- a/endpoints/endpoints.go +++ b/endpoints/endpoints.go @@ -89,6 +89,12 @@ var KaKao = oauth2.Endpoint{ TokenURL: "https://kauth.kakao.com/oauth/token", } +// Line is the endpoint for LINE. +var Line = oauth2.Endpoint{ + AuthURL: "https://access.line.me/oauth2/v2.1/authorize", + TokenURL: "https://api.line.me/oauth2/v2.1/token", +} + // LinkedIn is the endpoint for LinkedIn. var LinkedIn = oauth2.Endpoint{ AuthURL: "https://www.linkedin.com/oauth/v2/authorization", From 2baa2470040373aa02ac8f4fbca7f96c1d2ffbe9 Mon Sep 17 00:00:00 2001 From: Firstnaruto Date: Wed, 29 Jan 2020 10:26:14 +0700 Subject: [PATCH 3/3] endpoints: add new package for oauth2.Endpoint values --- line/line.go | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 line/line.go diff --git a/line/line.go b/line/line.go deleted file mode 100644 index 1c6892ded..000000000 --- a/line/line.go +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright 2018 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Package line provides constants for using OAuth2 to access LINE. -package line // import "golang.org/x/oauth2/line" - -import ( - "golang.org/x/oauth2" -) - -// Endpoint is LINE's OAuth 2.0 endpoint. -var Endpoint = oauth2.Endpoint{ - AuthURL: "https://access.line.me/oauth2/v2.1/authorize", - TokenURL: "https://api.line.me/oauth2/v2.1/token", -}