Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

17 rindas
496 B

  1. // Copyright 2015 The oauth2 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 bitbucket provides constants for using OAuth2 to access Bitbucket.
  5. package bitbucket
  6. import (
  7. "golang.org/x/oauth2"
  8. )
  9. // Endpoint is Bitbucket's OAuth 2.0 endpoint.
  10. var Endpoint = oauth2.Endpoint{
  11. AuthURL: "https://bitbucket.org/site/oauth2/authorize",
  12. TokenURL: "https://bitbucket.org/site/oauth2/access_token",
  13. }