Can someone please help with an Access VBA code to parse the following json text? I need to retrieve the values for author, title, review, original_title, original_review, stars, iso, version, date, product, weight, and id and then loop to the next entry and next entry.
{
"total": 140,
"pages": 28,
"this_page": 1,
"reviews": [{
"author": "DeveloperToDeveloper",
"title": "Just Spectacular",
"review": "Finally able to remove the ads! The description is hilarious!! Thanks!!!",
"original_title": null,
"original_review": null,
"stars": "5.00",
"iso": "US",
"version": "1.2",
"date": "2012-09-19T17:05:00",
"product": 6567,
"weight": 0,
"id": "5561747L7xnbsMRu8UbPvy7A71Dv6A=="
}, {
"author": null,
"title": "Boat finder",
"review": "Very good app for my use, regrefully does not Search vessel by name.",
"original_title": null,
"original_review": null,
"stars": "5.00",
"iso": "US",
"version": "1.32",
"date": "2012-08-10T21:15:56",
"product": 5561747,
"weight": 0,
"id": "008bVy7L7xnbsMRu8UbPvy7xx1Dv6A=="
}, {
"author": "Dito",
"title": "Boat finder",
"review": "Very good app for my use, regrefully does not Search vessel by name.",
"original_title": null,
"original_review": null,
"stars": "5.00",
"iso": "US",
"version": "1.32",
"date": "2012-08-10T21:15:56",
"product": 5561,
"weight": 0,
"id": "5561747L7xhfgdbs09oyvy7A71Dv6A"
}, {
"author": "KTM SX",
"title": "À quand le deuxième épisode",
"review": "Super une maj pour d'autre decore et autre",
"original_title": null,
"original_review": null,
"stars": "5.00",
"iso": "FR",
"version": "1.2",
"date": "2012-07-19T13:58:00",
"product": 5858,
"weight": 0,
"id": "5561747L7xnbsMRu8UbP9s9s754gdt"
}]
}