Add additional url encoded case
This commit is contained in:
parent
ce0235af93
commit
9d3638db60
1 changed files with 1 additions and 1 deletions
2
jwt.go
2
jwt.go
|
@ -141,7 +141,7 @@ func (m *Middleware) Authenticate() http.Handler {
|
|||
b := make(map[string]string, 0)
|
||||
contentType := r.Header.Get("content-type")
|
||||
switch contentType {
|
||||
case "application/x-www-form-urlencoded":
|
||||
case "application/x-www-form-urlencoded", "application/x-www-form-urlencoded; charset=UTF-8":
|
||||
identity, verify := r.FormValue(m.identityField), r.FormValue(m.verifyField)
|
||||
if identity == "" || verify == "" {
|
||||
return &jwtError{
|
||||
|
|
Loading…
Add table
Reference in a new issue