Skip to content

Commit 191c617

Browse files
brainiac84bradfitz
authored andcommitted
microsoft: add windows live endpoints
Change-Id: I205dfb6c4d693929da799dcba40b3539c6302100 Reviewed-on: https://go-review.googlesource.com/18691 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 2baa8a1 commit 191c617

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

microsoft/microsoft.go

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright 2016 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
// Package microsoft provides constants for using OAuth2 to access Windows Live ID.
6+
package microsoft // import "golang.org/x/oauth2/microsoft"
7+
8+
import (
9+
"golang.org/x/oauth2"
10+
)
11+
12+
// LiveConnectEndpoint is Windows's Live ID OAuth 2.0 endpoint.
13+
var LiveConnectEndpoint = oauth2.Endpoint{
14+
AuthURL: "https://login.live.com/oauth20_authorize.srf",
15+
TokenURL: "https://login.live.com/oauth20_token.srf",
16+
}

0 commit comments

Comments
 (0)