Form getter already decodes this URLs
This commit is contained in:
parent
6b69668616
commit
ce0235af93
1 changed files with 2 additions and 8 deletions
10
jwt.go
10
jwt.go
|
@ -11,7 +11,6 @@ import (
|
|||
"fmt"
|
||||
"log"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
@ -103,15 +102,10 @@ func (m *Middleware) Secure(h http.Handler, v VerifyClaimsFunc) http.Handler {
|
|||
|
||||
authHeader := r.Header.Get("Authorization")
|
||||
if authHeader == "" {
|
||||
queryParam := r.FormValue("token")
|
||||
if queryParam == "" {
|
||||
token = r.FormValue("token")
|
||||
if token == "" {
|
||||
return &jwtError{status: http.StatusUnauthorized, err: ErrMissingToken}
|
||||
}
|
||||
var err error
|
||||
token, err = url.QueryUnescape(queryParam)
|
||||
if err != nil {
|
||||
return &jwtError{status: http.StatusUnauthorized, err: ErrMalformedToken}
|
||||
}
|
||||
} else {
|
||||
token = strings.Split(authHeader, " ")[1]
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue