2014-06-25 02:55:10 +04:00
|
|
|
# OAuth2 for Go
|
|
|
|
|
2014-07-10 03:06:12 +04:00
|
|
|
[![Build Status](https://travis-ci.org/golang/oauth2.svg?branch=master)](https://travis-ci.org/golang/oauth2)
|
2020-12-04 02:41:36 +03:00
|
|
|
[![Go Package Documentation](https://pkg.go.dev/badge/golang.org/x/oauth2.svg)](https://pkg.go.dev/golang.org/x/oauth2)
|
2014-07-10 03:06:12 +04:00
|
|
|
|
2014-06-25 02:55:10 +04:00
|
|
|
oauth2 package contains a client implementation for OAuth 2.0 spec.
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
~~~~
|
2014-11-26 22:44:45 +03:00
|
|
|
go get golang.org/x/oauth2
|
2014-06-25 02:55:10 +04:00
|
|
|
~~~~
|
|
|
|
|
2017-07-19 06:29:57 +03:00
|
|
|
Or you can manually git clone the repository to
|
|
|
|
`$(go env GOPATH)/src/golang.org/x/oauth2`.
|
|
|
|
|
2014-07-07 10:42:20 +04:00
|
|
|
See godoc for further documentation and examples.
|
|
|
|
|
2020-01-07 19:11:21 +03:00
|
|
|
* [godoc.org/golang.org/x/oauth2](https://godoc.org/golang.org/x/oauth2)
|
|
|
|
* [godoc.org/golang.org/x/oauth2/google](https://godoc.org/golang.org/x/oauth2/google)
|
2014-06-25 03:00:24 +04:00
|
|
|
|
2018-11-05 19:40:02 +03:00
|
|
|
## Policy for new packages
|
|
|
|
|
2020-01-07 19:11:21 +03:00
|
|
|
We no longer accept new provider-specific packages in this repo if all
|
|
|
|
they do is add a single endpoint variable. If you just want to add a
|
|
|
|
single endpoint, add it to the
|
|
|
|
[godoc.org/golang.org/x/oauth2/endpoints](https://godoc.org/golang.org/x/oauth2/endpoints)
|
|
|
|
package.
|
2018-11-05 19:40:02 +03:00
|
|
|
|
2017-07-19 06:29:57 +03:00
|
|
|
## Report Issues / Send Patches
|
2017-02-13 21:53:58 +03:00
|
|
|
|
2017-07-19 06:29:57 +03:00
|
|
|
This repository uses Gerrit for code changes. To learn how to submit changes to
|
|
|
|
this repository, see https://golang.org/doc/contribute.html.
|
2017-02-13 21:53:58 +03:00
|
|
|
|
2017-07-19 06:29:57 +03:00
|
|
|
The main issue tracker for the oauth2 repository is located at
|
|
|
|
https://github.com/golang/oauth2/issues.
|