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

..03-May-2022-

amazon/H07-Jan-2020-178

bitbucket/H07-Jan-2020-178

cern/H07-Jan-2020-178

clientcredentials/H07-Jan-2020-263192

endpoints/H07-Jan-2020-283185

facebook/H07-Jan-2020-178

fitbit/H07-Jan-2020-178

foursquare/H07-Jan-2020-178

github/H07-Jan-2020-178

gitlab/H07-Jan-2020-178

google/H07-Jan-2020-1,4191,047

heroku/H07-Jan-2020-178

hipchat/H07-Jan-2020-6138

instagram/H07-Jan-2020-178

internal/H07-Jan-2020-466319

jira/H07-Jan-2020-354280

jws/H07-Jan-2020-230157

jwt/H07-Jan-2020-539426

kakao/H07-Jan-2020-178

linkedin/H07-Jan-2020-189

mailchimp/H07-Jan-2020-188

mailru/H07-Jan-2020-178

mediamath/H07-Jan-2020-2312

microsoft/H07-Jan-2020-3217

nokiahealth/H07-Jan-2020-178

odnoklassniki/H07-Jan-2020-178

paypal/H07-Jan-2020-2312

slack/H07-Jan-2020-178

spotify/H07-Jan-2020-178

stackoverflow/H07-Jan-2020-178

twitch/H07-Jan-2020-208

uber/H07-Jan-2020-178

vk/H07-Jan-2020-178

yahoo/H07-Jan-2020-188

yandex/H07-Jan-2020-178

.travis.ymlH A D07-Jan-2020262 1410

AUTHORSH A D07-Jan-2020173 43

CONTRIBUTING.mdH A D07-Jan-2020924 2717

CONTRIBUTORSH A D07-Jan-2020170 43

LICENSEH A D07-Jan-20201.4 KiB2824

README.mdH A D07-Jan-20201.2 KiB3724

example_test.goH A D07-Jan-20202.4 KiB9059

go.modH A D07-Jan-2020233 118

go.sumH A D07-Jan-20201.1 KiB1312

oauth2.goH A D07-Jan-202012.2 KiB382186

oauth2_test.goH A D07-Jan-202018.5 KiB568528

token.goH A D07-Jan-20205 KiB179103

token_test.goH A D07-Jan-20202.2 KiB7767

transport.goH A D07-Jan-20202.3 KiB9053

transport_test.goH A D07-Jan-20204 KiB169153

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](https://godoc.org/golang.org/x/oauth2)
20* [godoc.org/golang.org/x/oauth2/google](https://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 if all
25they do is add a single endpoint variable. If you just want to add a
26single endpoint, add it to the
27[godoc.org/golang.org/x/oauth2/endpoints](https://godoc.org/golang.org/x/oauth2/endpoints)
28package.
29
30## Report Issues / Send Patches
31
32This repository uses Gerrit for code changes. To learn how to submit changes to
33this repository, see https://golang.org/doc/contribute.html.
34
35The main issue tracker for the oauth2 repository is located at
36https://github.com/golang/oauth2/issues.
37