25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.2 KiB

1234567891011121314151617181920212223242526272829303132333435
  1. # OAuth2 for Go
  2. [![Build Status](https://travis-ci.org/golang/oauth2.svg?branch=master)](https://travis-ci.org/golang/oauth2)
  3. [![GoDoc](https://godoc.org/golang.org/x/oauth2?status.svg)](https://godoc.org/golang.org/x/oauth2)
  4. oauth2 package contains a client implementation for OAuth 2.0 spec.
  5. ## Installation
  6. ~~~~
  7. go get golang.org/x/oauth2
  8. ~~~~
  9. Or you can manually git clone the repository to
  10. `$(go env GOPATH)/src/golang.org/x/oauth2`.
  11. See godoc for further documentation and examples.
  12. * [godoc.org/golang.org/x/oauth2](http://godoc.org/golang.org/x/oauth2)
  13. * [godoc.org/golang.org/x/oauth2/google](http://godoc.org/golang.org/x/oauth2/google)
  14. ## Policy for new packages
  15. We no longer accept new provider-specific packages in this repo. For
  16. defining provider endpoints and provider-specific OAuth2 behavior, we
  17. encourage you to create packages elsewhere. We'll keep the existing
  18. packages for compatibility.
  19. ## Report Issues / Send Patches
  20. This repository uses Gerrit for code changes. To learn how to submit changes to
  21. this repository, see https://golang.org/doc/contribute.html.
  22. The main issue tracker for the oauth2 repository is located at
  23. https://github.com/golang/oauth2/issues.