From 7bcfca65c702ac4f29e4d1307357ba80db9cbadb Mon Sep 17 00:00:00 2001 From: Dave Grijalva Date: Tue, 20 May 2014 15:28:50 -0700 Subject: [PATCH] mention new examples in README --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ed6284..e058af6 100644 --- a/README.md +++ b/README.md @@ -42,4 +42,8 @@ Parsing and verifying tokens is pretty straight forward. You pass in the token tokenString, err := token.SignedString(mySigningKey) ``` -Documentation can be found [here](http://godoc.org/github.com/dgrijalva/jwt-go) +## More + +Documentation can be found [on godoc.org](http://godoc.org/github.com/dgrijalva/jwt-go). + +The command line utility included in this project (cmd/jwt) provides a straightforward example of token creation and parsing as well as a useful tool for debugging your own integration. For a more http centric example, see [this gist](https://gist.github.com/cryptix/45c33ecf0ae54828e63b).