mirror of
https://github.com/golang/oauth2.git
synced 2025-07-21 00:00:09 +08:00
See GitLab documentation https://docs.gitlab.com/ee/api/oauth2.html#device-authorization-grant-flow. Change-Id: Ideffbfcb67e0b25251a0b18148e57eab43124d37 GitHub-Last-Rev: 6ecd45efff1a39fa7f31da96be70243b6029d16f GitHub-Pull-Request: golang/oauth2#733 Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/600095 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Matt Hickford <matt.hickford@gmail.com> Reviewed-by: Matt Hickford <matt.hickford@gmail.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: David Chase <drchase@google.com> TryBot-Bypass: Matt Hickford <matt.hickford@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
14 lines
408 B
Go
14 lines
408 B
Go
// 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 gitlab provides constants for using OAuth2 to access GitLab.
|
|
package gitlab // import "golang.org/x/oauth2/gitlab"
|
|
|
|
import (
|
|
"golang.org/x/oauth2/endpoints"
|
|
)
|
|
|
|
// Endpoint is GitLab's OAuth 2.0 endpoint.
|
|
var Endpoint = endpoints.GitLab
|