mirror of https://github.com/golang-jwt/jwt.git
pushed a test change
This commit is contained in:
parent
ca46641b15
commit
fea509ebfe
2
token.go
2
token.go
|
@ -97,7 +97,7 @@ func ParseFromRequest(req *http.Request, keyFunc Keyfunc) (token *Token, err err
|
||||||
if ah := req.Header.Get("Authorization"); ah != "" {
|
if ah := req.Header.Get("Authorization"); ah != "" {
|
||||||
// Should be a bearer token
|
// Should be a bearer token
|
||||||
if len(ah) > 6 && strings.ToUpper(ah[0:7]) == "BEARER " {
|
if len(ah) > 6 && strings.ToUpper(ah[0:7]) == "BEARER " {
|
||||||
return Parse(ah, keyFunc)
|
return Parse(ah[7:], keyFunc)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue