I'm retrieving the activities feed using the 'datetime' query parameter to fetch only recent activities.
Firstly, I discovered that the format given in http://wiki.developer.myspace.com/index.php?title=ActivityStream_Queries#DateTime is wrong: MM/dd/yyyy doesn't work but dd/MM/yyyy does. Additionally ISO8601 date-times are also accepted, eg 2009-08-07T08:20:00Z.
Can someone confirm which formats are formally supported for this parameter?
It seems that recent ISO8601 values cause the request to return a 500 status with no further information in the response body. As I type this the time is about 2009-08-07T08:39:00Z, and making calls with various values for 'datetime' gives the following results:
- 2009-08-07T07:45:00Z works
- 2009-08-07T07:50:00Z works
- 2009-08-07T07:55:00Z works
- 2009-08-07T08:00:00Z fails
- 2009-08-07T08:15:00Z fails
- 2009-08-07T08:30:00Z fails
Is this a bug, or intentional - and if the latter, what's the most recent value for 'datetime' which will work?
Thanks
--Richard