Hello,
I have an “id” property already in my response, under children:
"kind": "Listing",
"data": {
"after": null,
"dist": 1,
"modhash": "",
"geo_filter": "",
"children": n
{
"kind": "t3",
"data": {
"approved_at_utc": null,
"saved": false,
"mod_reason_title": null,
"gilded": 0,
"removal_reason": null,
"link_flair_background_color": "",
"id": "pc39rj",
"is_robot_indexable": true,
}
}
],
"before": null
}
}
This is my API Endpoint Code…
return z.request(options)
.then((response) => {
response.throwForStatus();
const results = response.json;
// You can do any parsing you need for results here before returning them
return eresults];
});
I don’t really understand why it won’t pick it up... I am guessing I would need additional code in the parsing section?
Any help would be appreciated!
WDes