fix: external auth by using a different auth header (#649)

License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>

Former-commit-id: e7c2574e40390d402443b23dd7aee5e5b18e5131 [formerly 20463dd5229b0e1f572a883e83db9e43bf8c8ff6] [formerly d2910cf8b18b20b13a46ffad23183c89325ef06b [formerly b5e61bc979]]
Former-commit-id: d26442e70963119ed3e6abd1ae894294eb12f1ed [formerly 9b49bbd9a959595ef0c26eeadd1fcac96e2b338c]
Former-commit-id: 1c8b2261607cdb88a3c685311e165e517234e498
This commit is contained in:
Henrique Dias 2019-01-29 09:06:30 +00:00 committed by GitHub
parent f3d007025e
commit ba5c67d9da
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit d004015f0335a4674b4440613086da94de506b7e Subproject commit e370fbe5007c715c994fbc8716fa193d4e2dc3bb

View File

@ -30,7 +30,7 @@ type authToken struct {
type extractor []string type extractor []string
func (e extractor) ExtractToken(r *http.Request) (string, error) { func (e extractor) ExtractToken(r *http.Request) (string, error) {
token, _ := request.AuthorizationHeaderExtractor.ExtractToken(r) token, _ := request.HeaderExtractor{"X-Auth"}.ExtractToken(r)
// Checks if the token isn't empty and if it contains two dots. // Checks if the token isn't empty and if it contains two dots.
// The former prevents incompatibility with URLs that previously // The former prevents incompatibility with URLs that previously