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

..03-May-2022-

amazon/H05-Oct-2021-

authhandler/H05-Oct-2021-

bitbucket/H05-Oct-2021-

cern/H05-Oct-2021-

clientcredentials/H05-Oct-2021-

endpoints/H05-Oct-2021-

facebook/H05-Oct-2021-

fitbit/H05-Oct-2021-

foursquare/H05-Oct-2021-

github/H05-Oct-2021-

gitlab/H05-Oct-2021-

google/H05-Oct-2021-

heroku/H05-Oct-2021-

hipchat/H05-Oct-2021-

instagram/H05-Oct-2021-

internal/H05-Oct-2021-

jira/H05-Oct-2021-

jws/H05-Oct-2021-

jwt/H05-Oct-2021-

kakao/H05-Oct-2021-

linkedin/H05-Oct-2021-

mailchimp/H05-Oct-2021-

mailru/H05-Oct-2021-

mediamath/H05-Oct-2021-

microsoft/H05-Oct-2021-

nokiahealth/H05-Oct-2021-

odnoklassniki/H05-Oct-2021-

paypal/H05-Oct-2021-

slack/H05-Oct-2021-

spotify/H05-Oct-2021-

stackoverflow/H05-Oct-2021-

twitch/H05-Oct-2021-

uber/H05-Oct-2021-

vk/H05-Oct-2021-

yahoo/H05-Oct-2021-

yandex/H05-Oct-2021-

.travis.ymlH A D05-Oct-2021262

AUTHORSH A D05-Oct-2021173

CONTRIBUTING.mdH A D05-Oct-2021924

CONTRIBUTORSH A D05-Oct-2021170

LICENSEH A D05-Oct-20211.4 KiB

README.mdH A D05-Oct-20211.2 KiB

example_test.goH A D05-Oct-20212.4 KiB

go.modH A D05-Oct-2021167

go.sumH A D05-Oct-202135.6 KiB

oauth2.goH A D05-Oct-202112.2 KiB

oauth2_test.goH A D05-Oct-202118.5 KiB

token.goH A D05-Oct-20215 KiB

token_test.goH A D05-Oct-20212.2 KiB

transport.goH A D05-Oct-20212.3 KiB

transport_test.goH A D05-Oct-20214 KiB

README.md

1# OAuth2 for Go
2
3[![Go Reference](https://pkg.go.dev/badge/golang.org/x/oauth2.svg)](https://pkg.go.dev/golang.org/x/oauth2)
4[![Build Status](https://travis-ci.org/golang/oauth2.svg?branch=master)](https://travis-ci.org/golang/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 pkg.go.dev for further documentation and examples.
18
19* [pkg.go.dev/golang.org/x/oauth2](https://pkg.go.dev/golang.org/x/oauth2)
20* [pkg.go.dev/golang.org/x/oauth2/google](https://pkg.go.dev/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[pkg.go.dev/golang.org/x/oauth2/endpoints](https://pkg.go.dev/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