diff --git a/main.go b/main.go index 7a1a5a6..ef10067 100644 --- a/main.go +++ b/main.go @@ -1074,7 +1074,7 @@ func main() { func wrapAuth(handler http.HandlerFunc) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { auth := r.Header.Get("Authorization") - if auth == "" || (authToken != "" && auth == "Token "+authToken) { + if auth == "" || (authToken != "" && (auth == "Token "+authToken || auth == "Bearer "+authToken)) { r = r.WithContext(context.WithValue(r.Context(), authKey, auth != "")) // auth == "", require cookie in handler handler.ServeHTTP(w, r)