Skip to content

Commit cd4f82c

Browse files
sabhiramtklauser
authored andcommitted
endpoints: add Zoom endpoint
See #424 Change-Id: I1fa6230082261f60a8e41387ad2bf481df0a1fce GitHub-Last-Rev: 6fba3dd GitHub-Pull-Request: #453 Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/271826 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Trust: Brad Fitzpatrick <bradfitz@golang.org> Trust: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Go Bot <gobot@golang.org>
1 parent 5366d9d commit cd4f82c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

endpoints/endpoints.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,12 @@ var Yandex = oauth2.Endpoint{
197197
TokenURL: "https://oauth.yandex.com/token",
198198
}
199199

200+
// Zoom is the endpoint for Zoom.
201+
var Zoom = oauth2.Endpoint{
202+
AuthURL: "https://zoom.us/oauth/authorize",
203+
TokenURL: "https://zoom.us/oauth/token",
204+
}
205+
200206
// AzureAD returns a new oauth2.Endpoint for the given tenant at Azure Active Directory.
201207
// If tenant is empty, it uses the tenant called `common`.
202208
//

0 commit comments

Comments
 (0)