Add additional url encoded case

This commit is contained in:
Matthew Dillon 2015-12-01 16:54:57 -07:00
parent ce0235af93
commit 9d3638db60

2
jwt.go
View file

@ -141,7 +141,7 @@ func (m *Middleware) Authenticate() http.Handler {
b := make(map[string]string, 0) b := make(map[string]string, 0)
contentType := r.Header.Get("content-type") contentType := r.Header.Get("content-type")
switch contentType { 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) identity, verify := r.FormValue(m.identityField), r.FormValue(m.verifyField)
if identity == "" || verify == "" { if identity == "" || verify == "" {
return &jwtError{ return &jwtError{