1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# OAuth1
[](https://godoc.org/github.com/gomodule/oauth1/oauth)
[](https://travis-ci.org/gomodule/oauth1)
OAuth1 is a [Go](https://golang.org/) client for the OAuth 1.0, OAuth 1.0a and
[RFC 5849](https://tools.ietf.org/html/rfc5849) Protocols. The package supports
HMAC-SHA1, RSA-SHA1 and PLAINTEXT signatures.
## Installation
go get github.com/gomodule/oauth1/oauth
## License
oauth1 is available under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html).
## Documentation
- [Reference](http://godoc.org/github.com/gomodule/oauth1/oauth)
- Examples
- [Discogs](https://github.com/gomodule/oauth1/tree/master/examples/discogs)
- [Dropbox](https://github.com/gomodule/oauth1/tree/master/examples/dropbox)
- [Quickbooks](https://github.com/gomodule/oauth1/tree/master/examples/quickbooks)
- [SmugMug](https://github.com/gomodule/oauth1/tree/master/examples/smugmug)
- [Twitter on App Engine](https://github.com/gomodule/oauth1/tree/master/examples/appengine)
- [Twitter](https://github.com/gomodule/oauth1/tree/master/examples/twitter)
- [Twitter OOB](https://github.com/gomodule/oauth1/tree/master/examples/twitteroob) (a command line application using OOB authorization)
- [Yelp](https://github.com/gomodule/oauth1/tree/master/examples/yelp)
|