-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.py
26 lines (25 loc) · 1021 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
configs = [
{
"client_id": "",
"secret": "",
"redirect_uri": "https://alist.nn.ci/tool/onedrive/callback",
"redis_host": "192.168.1.248",
"redis_port": 6379,
"redis_key": "drive", # stay unique
"refresh_token": "", # can keep empty, or initial value
"redis_password": "",
}
]
api_list = [
r"https://graph.microsoft.com/v1.0/me/drive/root",
r"https://graph.microsoft.com/v1.0/me/drive",
r"https://graph.microsoft.com/v1.0/drive/root",
r"https://graph.microsoft.com/v1.0/users",
r"https://graph.microsoft.com/v1.0/me/messages",
r"https://graph.microsoft.com/v1.0/me/mailFolders/inbox/messageRules",
r"https://graph.microsoft.com/v1.0/me/mailFolders/Inbox/messages/delta",
r"https://graph.microsoft.com/v1.0/me/drive/root/children",
r"https://graph.microsoft.com/v1.0/me/drive/recent",
r"https://graph.microsoft.com/v1.0/me/mailFolders",
r"https://graph.microsoft.com/v1.0/me/outlook/masterCategories",
]