您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

17 行
531 B

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