update 401
This commit is contained in:
parent
93262dc549
commit
c649b67c20
1 changed files with 4 additions and 1 deletions
|
@ -90,7 +90,10 @@ func InitV2Router() http.Handler {
|
|||
},
|
||||
TokenLookupFuncs: []echo_middleware.ValuesExtractor{
|
||||
func(c echo.Context) ([]string, error) {
|
||||
return []string{c.Request().Header.Get(echo.HeaderAuthorization)}, nil
|
||||
if len(c.Request().Header.Get(echo.HeaderAuthorization)) > 0 {
|
||||
return []string{c.Request().Header.Get(echo.HeaderAuthorization)}, nil
|
||||
}
|
||||
return []string{c.QueryParam("token")}, nil
|
||||
},
|
||||
},
|
||||
}))
|
||||
|
|
Loading…
Add table
Reference in a new issue