-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathspeedclone.json
98 lines (98 loc) · 2.83 KB
/
speedclone.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"transfers": {
"gd": { "mod": "googledrive", "cls": "GoogleDriveTransferManager" },
"od": { "mod": "onedrive", "cls": "OneDriveTransferManager" },
"fs": { "mod": "filesystem", "cls": "FileSystemTransferManager" },
"http": { "mod": "httpdownload", "cls": "HttpTransferManager" },
"count": { "mod": "count", "cls": "CountTransferManager" },
"odshare": {
"mod": "onedriveshare",
"cls": "OneDriveShareTransferManager"
}
},
"bar": {
"slim": { "mod": "slimbar", "cls": "SlimBarManager" },
"common": { "mod": "commonbar", "cls": "CommonBarManager" }
},
"configs": {
"gd": {
"service_account": false,
"token_path": "/path/to/token_file.json",
"transfer": "gd",
"client": {
"client_id": "client_id here",
"client_secret": "client_secret here"
},
"http": {
"proxies": {
"http": "proxies here # would support all proxies that requests support",
"https": "proxies here # would support all proxies that requests support"
}
},
"root": "root",
"drive_id": ""
},
"gdtm": {
"service_account": true,
"token_path": "/path/to/accounts/dir",
"transfer": "gd",
"http": {
"proxies": {
"http": "proxies here # would support all proxies that requests support",
"https": "proxies here # would support all proxies that requests support"
}
},
"root": "your root dirname here",
"drive_id": "your team driveid here"
},
"gdshare": {
"use_root_in_path": true,
"service_account": true,
"token_path": "/path/to/accounts/dir",
"transfer": "gd",
"http": {
"proxies": {
"http": "proxies here # would support all proxies that requests support",
"https": "proxies here # would support all proxies that requests support"
}
},
"drive_id": ""
},
"od": {
"token_path": "/path/to/token_file.json",
"transfer": "od"
},
"odst": {
"token_path": "/path/to/accounts/dir",
"transfer": "od",
"drive_id": "your drive id # default is users default drive (/me/drive)",
"client": {
"client_id": "your client id",
"client_secret": "your client secret # if your app is not private, then fill nothing"
}
},
"fs": {
"transfer": "fs"
},
"count": {
"transfer": "count"
},
"http": {
"transfer": "http",
"http": {
"headers": {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36"
},
"verify": false
}
},
"odshare": {
"is_folder": true,
"transfer": "odshare"
},
"odsharef": {
"is_folder": false,
"transfer": "odshare"
}
}
}