I have spotted an strange behavior when getting events from Box using the BOX API v2.
The scenario I got is like follows:
- Upload 14 files to the box.net using box API v1.
- Get events using stream_position=now, this gives a stream position, say 1234 and no entries are returned.
- Get events using stream_position=1234, this gives a new stream position, say 7890 and no entries are returned.
(Until this point it is all as expected) - Get events using stream_position=7890, now this gives a dummy number of events which have behavior "ITEM_UPLOAD" and some files I uploaded in step one.
I expect if no file events happens after step 1, all the consequent get events calls will return zero entries.
Is this a bug in Box.NET API V2?
Since I use API v1 and API v2 at the same time, are they compatible?