I\'m trying to use full calendar to load events from a json source. The json is from a URL like a feed, \"mysite.com/getEvents\" (which returns a json event object). Right n
I know this is an old post but others may be looking for this...
You need to have brackets around your json response, it seems to be expecting an array of objects:
[
{
"title":"foo1",
"id":"123",
"start":"2016-02-12T10:30:00",
"end":"2016-02-12T12:30:00"
},
{
"title":"foo2",
"id":"456",
"start":"2016-02-14T10:30:00",
"end":"2016-02-14T12:30:00"
}
]