Hi Guys,
I'm building some mini-portal where users will be able to login and see company information including they calendar.
So for calendar part, I decided to use Zimbra_REST_API_Reference:Get_Calendar but I have little problems. Docs says:
http://localhost:7070/home/john.doe/calendar?{params}
* fmt. Optional. The response format. Defaults to ics format.
* start. Optional. The start time range (milliseconds | yyyy/dd/mm | mm/dd/yyy | relative dates ).
* end. Optional. The end time range (milliseconds | yyyy/dd/mm | mm/dd/yyy | relative dates ).
* query. Optional. A query string.
So, if I'll go to: It should bring me events in JSON format for period of 3 days (from april 5 until april 7) but it brings me whole calendar in json format.
If I change fmt to RSS it brings empty XML and I'm sure that i have few event for that period.
Code:
<?xml version="1.0"?> <rss version="2.0"><channel><title>Zimbra calendar</title><link>http://www.zimbra.com</link><description>Zimbra item calendar in RSS format.</description><generator>Zimbra RSS Feed Servlet</generator></channel></rss>
Am I missing something?
Can anyone confirm?