We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35d8f2c commit ec13225Copy full SHA for ec13225
2 files changed
app.py
@@ -7,7 +7,7 @@
7
8
9
app = Flask(__name__)
10
-app.config["SESSION_TYPE"] = "filesystem" # We choose to store tokens in server-side session
+app.config.from_object(app_config)
11
Session(app)
12
13
app_config.py
@@ -19,3 +19,5 @@
19
# https://docs.microsoft.com/en-us/graph/permissions-reference
20
SCOPE = ["https://graph.microsoft.com/Calendars.Read"]
21
22
+SESSION_TYPE = "filesystem" # So token cache will be stored in server-side session
23
+
0 commit comments