2014-06-24 18:55:10 -04:00
|
|
|
# OAuth2 for Go
|
|
|
|
|
2014-07-09 19:06:12 -04:00
|
|
|
[![Build Status](https://travis-ci.org/golang/oauth2.svg?branch=master)](https://travis-ci.org/golang/oauth2)
|
|
|
|
|
2014-06-24 18:55:10 -04:00
|
|
|
oauth2 package contains a client implementation for OAuth 2.0 spec.
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
~~~~
|
2014-11-26 14:44:45 -05:00
|
|
|
go get golang.org/x/oauth2
|
2014-06-24 18:55:10 -04:00
|
|
|
~~~~
|
|
|
|
|
2014-07-07 02:42:20 -04:00
|
|
|
See godoc for further documentation and examples.
|
|
|
|
|
2014-11-26 14:44:45 -05:00
|
|
|
* [godoc.org/golang.org/x/oauth2](http://godoc.org/golang.org/x/oauth2)
|
|
|
|
* [godoc.org/golang.org/x/oauth2/google](http://godoc.org/golang.org/x/oauth2/google)
|
2014-06-24 19:00:24 -04:00
|
|
|
|
|
|
|
|