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

..03-May-2022-

amazon/H04-Jun-2019-

bitbucket/H04-Jun-2019-

cern/H04-Jun-2019-

clientcredentials/H04-Jun-2019-

facebook/H04-Jun-2019-

fitbit/H04-Jun-2019-

foursquare/H04-Jun-2019-

github/H04-Jun-2019-

gitlab/H04-Jun-2019-

google/H04-Jun-2019-

heroku/H04-Jun-2019-

hipchat/H04-Jun-2019-

instagram/H04-Jun-2019-

internal/H04-Jun-2019-

jira/H04-Jun-2019-

jws/H04-Jun-2019-

jwt/H04-Jun-2019-

kakao/H04-Jun-2019-

linkedin/H04-Jun-2019-

mailchimp/H04-Jun-2019-

mailru/H04-Jun-2019-

mediamath/H04-Jun-2019-

microsoft/H04-Jun-2019-

nokiahealth/H04-Jun-2019-

odnoklassniki/H04-Jun-2019-

paypal/H04-Jun-2019-

slack/H04-Jun-2019-

spotify/H04-Jun-2019-

stackoverflow/H04-Jun-2019-

twitch/H04-Jun-2019-

uber/H04-Jun-2019-

vk/H04-Jun-2019-

yahoo/H04-Jun-2019-

yandex/H04-Jun-2019-

.travis.ymlH A D04-Jun-2019262

AUTHORSH A D04-Jun-2019173

CONTRIBUTING.mdH A D04-Jun-2019924

CONTRIBUTORSH A D04-Jun-2019170

LICENSEH A D04-Jun-20191.4 KiB

README.mdH A D04-Jun-20191.2 KiB

example_test.goH A D04-Jun-20192.4 KiB

go.modH A D04-Jun-2019233

go.sumH A D04-Jun-20191.1 KiB

oauth2.goH A D04-Jun-201912.2 KiB

oauth2_test.goH A D04-Jun-201918.5 KiB

token.goH A D04-Jun-20195 KiB

token_test.goH A D04-Jun-20192.2 KiB

transport.goH A D04-Jun-20193.2 KiB

transport_test.goH A D04-Jun-20194 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](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