microsoft.go 563 B

12345678910111213141516
  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. // Package microsoft provides constants for using OAuth2 to access Windows Live ID.
  5. package microsoft // import "golang.org/x/oauth2/microsoft"
  6. import (
  7. "golang.org/x/oauth2"
  8. )
  9. // LiveConnectEndpoint is Windows's Live ID OAuth 2.0 endpoint.
  10. var LiveConnectEndpoint = oauth2.Endpoint{
  11. AuthURL: "https://login.live.com/oauth20_authorize.srf",
  12. TokenURL: "https://login.live.com/oauth20_token.srf",
  13. }