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

..03-May-2022-

amazon/H19-Aug-2021-178

authhandler/H19-Aug-2021-157112

bitbucket/H19-Aug-2021-178

cern/H19-Aug-2021-178

clientcredentials/H19-Aug-2021-263192

endpoints/H19-Aug-2021-301197

facebook/H19-Aug-2021-178

fitbit/H19-Aug-2021-178

foursquare/H19-Aug-2021-178

github/H19-Aug-2021-178

gitlab/H19-Aug-2021-178

google/H19-Aug-2021-4,8533,678

heroku/H19-Aug-2021-178

hipchat/H19-Aug-2021-6138

instagram/H19-Aug-2021-178

internal/H19-Aug-2021-467319

jira/H19-Aug-2021-354280

jws/H19-Aug-2021-230157

jwt/H19-Aug-2021-539426

kakao/H19-Aug-2021-178

linkedin/H19-Aug-2021-189

mailchimp/H19-Aug-2021-188

mailru/H19-Aug-2021-178

mediamath/H19-Aug-2021-2312

microsoft/H19-Aug-2021-3217

nokiahealth/H19-Aug-2021-178

odnoklassniki/H19-Aug-2021-178

paypal/H19-Aug-2021-2312

slack/H19-Aug-2021-178

spotify/H19-Aug-2021-178

stackoverflow/H19-Aug-2021-178

twitch/H19-Aug-2021-208

uber/H19-Aug-2021-178

vk/H19-Aug-2021-178

yahoo/H19-Aug-2021-188

yandex/H19-Aug-2021-178

.travis.ymlH A D19-Aug-2021262 1410

AUTHORSH A D19-Aug-2021173 43

CONTRIBUTING.mdH A D19-Aug-2021924 2717

CONTRIBUTORSH A D19-Aug-2021170 43

LICENSEH A D19-Aug-20211.4 KiB2824

README.mdH A D19-Aug-20211.2 KiB3724

example_test.goH A D19-Aug-20212.4 KiB9059

go.modH A D19-Aug-2021167 107

go.sumH A D19-Aug-202135.6 KiB362361

oauth2.goH A D19-Aug-202112.2 KiB382186

oauth2_test.goH A D19-Aug-202118.5 KiB568528

token.goH A D19-Aug-20215 KiB179103

token_test.goH A D19-Aug-20212.2 KiB7767

transport.goH A D19-Aug-20212.3 KiB9053

transport_test.goH A D19-Aug-20214 KiB169153

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