diff --git a/notebook/base/handlers.py b/notebook/base/handlers.py index 3ab515c610..5ef320b139 100755 --- a/notebook/base/handlers.py +++ b/notebook/base/handlers.py @@ -416,7 +416,7 @@ def finish(self, *args, **kwargs): return super(APIHandler, self).finish(*args, **kwargs) def options(self, *args, **kwargs): - self.set_header('Access-Control-Allow-Headers', 'accept, content-type') + self.set_header('Access-Control-Allow-Headers', 'accept, content-type, authorization') self.set_header('Access-Control-Allow-Methods', 'GET, PUT, POST, PATCH, DELETE, OPTIONS') self.finish()