Skip to content

Commit

Permalink
Merge pull request #9556 from kylekampy/patch-1
Browse files Browse the repository at this point in the history
Fix reference to outdated jwt-go dependency
  • Loading branch information
davidpatrick authored Jan 8, 2021
2 parents 868fc89 + 9cdddf6 commit 5e8b4c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions articles/quickstart/backend/golang/01-authorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ useCase: quickstart

### Install dependencies

The [**dgrijalva/jwt-go**](https://github.com/dgrijalva/jwt-go) package can be used to verify incoming JWTs. The [**auth0/go-jwt-middleware**](https://github.com/auth0/go-jwt-middleware) library can be used alongside it to fetch your Auth0 public key and complete the verification process. Finally, we'll use the [**gorilla/mux**](https://github.com/gorilla/mux) package to handle our routes and [**codegangsta/negroni**](https://github.com/urfave/negroni) for HTTP middleware.
The [**form3tech-oss/jwt-go**](https://github.com/form3tech-oss/jwt-go) package can be used to verify incoming JWTs. The [**auth0/go-jwt-middleware**](https://github.com/auth0/go-jwt-middleware) library can be used alongside it to fetch your Auth0 public key and complete the verification process. Finally, we'll use the [**gorilla/mux**](https://github.com/gorilla/mux) package to handle our routes and [**codegangsta/negroni**](https://github.com/urfave/negroni) for HTTP middleware.

```bash
go get -d github.com/auth0/go-jwt-middleware
go get -d github.com/dgrijalva/jwt-go
go get -d github.com/form3tech-oss/jwt-go
go get -d github.com/codegangsta/negroni
go get -d github.com/gorilla/mux
```
Expand All @@ -55,7 +55,7 @@ import (

"github.com/codegangsta/negroni"
"github.com/auth0/go-jwt-middleware"
"github.com/dgrijalva/jwt-go"
"github.com/form3tech-oss/jwt-go"
"github.com/gorilla/mux"
)

Expand Down

0 comments on commit 5e8b4c2

Please sign in to comment.