So I have many JSON objects which was returned from the Facebook API, one of which is as shown below.
{
"_id": ObjectId("503ded9103c4b72fef12aa2f"),
"from": {
"category": "Company",
"name": "Fortis Healthcare",
"id": "165708715950"
},
"pid": "165708715950_377424172280794",
"like_count": NumberInt(0),
"can_remove": false,
"created_time": "2012-04-02T09:58:48+0000",
"message": "For academic info check out http:\/\/www.fortishospitals.com\/about-fortis-hospitals\/academic-initiatives.html",
"id": "165708715950_377424172280794_4682416",
"user_likes": false
}
What I need to do here is that I need to group all the dates belonging to their months and extract the 'message' parameter from these objects. How do I group the dates of these months?