• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..11-Nov-2020-

google/H11-Nov-2020-821552

internal/H11-Nov-2020-388254

jws/H11-Nov-2020-183121

jwt/H11-Nov-2020-186121

AUTHORSH A D11-Nov-2020173 43

CONTRIBUTING.mdH A D11-Nov-2020924 2717

CONTRIBUTORSH A D11-Nov-2020170 43

LICENSEH A D11-Nov-20201.4 KiB2824

README.mdH A D11-Nov-20201.2 KiB3623

go.modH A D11-Nov-2020233 118

go.sumH A D11-Nov-20201.1 KiB1312

oauth2.goH A D11-Nov-202012.2 KiB382186

token.goH A D11-Nov-20205 KiB179103

transport.goH A D11-Nov-20203.2 KiB145105

README.md

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