我正在开发android中的Dropbox图像下载应用程序 我不知道如何使用Dropbox中提到的/delta来识别Dropbox图像更改 你可以给我任何参考教程或任何解释,特别是什么是光标参数以及如何解析它
答案 0 :(得分:2)
第一次调用delta时,不传递光标。响应包括您应该在下次呼叫时使用的光标,等等。
答案 1 :(得分:1)
我按照以下方式做了这个
DeltaPage<Entry> deltaPage;
String cursor ="";
do {
deltaPage = mApi.delta(cursor);
cursor = deltaPage.cursor;
if(..){
..
}
} while (deltaPage.hasMore);
请注意“mApi”是“DropboxAPI”
的参考达到我用过以下链接的答案
download dropbox api for android
Android Core SDK中delta的文档
link 1
link 2
link 3
how to use delta in general