endpoints: add Zoom endpoint

This commit is contained in:
Shaba Abhiram 2020-11-19 18:55:21 -08:00
parent 9fd604954f
commit 6fba3dd9d1
1 changed files with 6 additions and 0 deletions

View File

@ -197,6 +197,12 @@ var Yandex = oauth2.Endpoint{
TokenURL: "https://oauth.yandex.com/token", TokenURL: "https://oauth.yandex.com/token",
} }
// Zoom is the endpoint for Zoom.
var Zoom = oauth2.Endpoint{
AuthURL: "https://zoom.us/oauth/authorize",
TokenURL: "https://zoom.us/oauth/token",
}
// AzureAD returns a new oauth2.Endpoint for the given tenant at Azure Active Directory. // AzureAD returns a new oauth2.Endpoint for the given tenant at Azure Active Directory.
// If tenant is empty, it uses the tenant called `common`. // If tenant is empty, it uses the tenant called `common`.
// //