update 401

This commit is contained in:
LinkLeong 2023-07-03 09:34:09 +01:00
parent 93262dc549
commit c649b67c20
1 changed files with 4 additions and 1 deletions

View File

@ -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
},
},
}))