Hi,
I still search on google but couldn’t find a way to parse the directories.
I found the below codes:
HttpRequest
.get(serverUrl)
.timeout(5000)
.set('Content-Type', 'application/json; charset=UTF-8')
.then(function(res) {
console.log(res.status);
console.log(JSON.stringify(res.header, null, 4));
console.log(JSON.stringify(res.body, null, 4));
and found “JSON.parse()” function. But couldn’t find how to parse :/
Please, can you advise me something?