hi ,
when a chnage happend i recived a notification.
at first as i know i need to return 200 to verify the notification recived.
then when i make a nother change i am calling
var res22 = client.AsMember(null).Files.ListFolderAsync("");
and get the cursor and then calling to
var res = client.AsMember(null).Files.ListFolderContinueAsync(res2.Result.Cursor);
i also tried to call
var res2 = client.AsMember(null).Files.ListFolderGetLatestCursorAsync("");
and then to
var res4 = client.AsMember(null).Files.ListFolderContinueAsync(res22.Result.Cursor);
and no error recived but also no chnage recived .
how to i get the actual changed data file/folder ?
thanks