Dropbox 增量用户 ID
Dropbox delta user ID
我们从 Dropbox Webhook 收到以下 JSON。我们不知道增量用户信息是什么意思:
{
"list_folder": {
"accounts": [
"dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc",
...
]
},
"delta": {
"users": [
12345678,
23456789,
...
]
}
}
有什么想法吗?
webhooks documentation(点击第二个选项卡)涵盖了这些字段的含义:
The list_folder.accounts
list is a list of API v2 account IDs. The delta.users
list is a list of API v1 user IDs.
Note that only the user IDs and accounts with file changes are provided. Your app is expected to call /files/list_folder/continue to find out what files changed using the latest cursor your app previously stored for that account. If your app is still using v1, you can call /delta.
我们从 Dropbox Webhook 收到以下 JSON。我们不知道增量用户信息是什么意思:
{
"list_folder": {
"accounts": [
"dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc",
...
]
},
"delta": {
"users": [
12345678,
23456789,
...
]
}
}
有什么想法吗?
webhooks documentation(点击第二个选项卡)涵盖了这些字段的含义:
The
list_folder.accounts
list is a list of API v2 account IDs. Thedelta.users
list is a list of API v1 user IDs.Note that only the user IDs and accounts with file changes are provided. Your app is expected to call /files/list_folder/continue to find out what files changed using the latest cursor your app previously stored for that account. If your app is still using v1, you can call /delta.