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

..03-May-2022-

amazon/H07-Jan-2020-

bitbucket/H07-Jan-2020-

cern/H07-Jan-2020-

clientcredentials/H07-Jan-2020-

endpoints/H07-Jan-2020-

facebook/H07-Jan-2020-

fitbit/H07-Jan-2020-

foursquare/H07-Jan-2020-

github/H07-Jan-2020-

gitlab/H07-Jan-2020-

google/H07-Jan-2020-

heroku/H07-Jan-2020-

hipchat/H07-Jan-2020-

instagram/H07-Jan-2020-

internal/H07-Jan-2020-

jira/H07-Jan-2020-

jws/H07-Jan-2020-

jwt/H07-Jan-2020-

kakao/H07-Jan-2020-

linkedin/H07-Jan-2020-

mailchimp/H07-Jan-2020-

mailru/H07-Jan-2020-

mediamath/H07-Jan-2020-

microsoft/H07-Jan-2020-

nokiahealth/H07-Jan-2020-

odnoklassniki/H07-Jan-2020-

paypal/H07-Jan-2020-

slack/H07-Jan-2020-

spotify/H07-Jan-2020-

stackoverflow/H07-Jan-2020-

twitch/H07-Jan-2020-

uber/H07-Jan-2020-

vk/H07-Jan-2020-

yahoo/H07-Jan-2020-

yandex/H07-Jan-2020-

.travis.ymlH A D07-Jan-2020262

AUTHORSH A D07-Jan-2020173

CONTRIBUTING.mdH A D07-Jan-2020924

CONTRIBUTORSH A D07-Jan-2020170

LICENSEH A D07-Jan-20201.4 KiB

README.mdH A D07-Jan-20201.2 KiB

example_test.goH A D07-Jan-20202.4 KiB

go.modH A D07-Jan-2020233

go.sumH A D07-Jan-20201.1 KiB

oauth2.goH A D07-Jan-202012.2 KiB

oauth2_test.goH A D07-Jan-202018.5 KiB

token.goH A D07-Jan-20205 KiB

token_test.goH A D07-Jan-20202.2 KiB

transport.goH A D07-Jan-20202.3 KiB

transport_test.goH A D07-Jan-20204 KiB

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