1

我订阅了 Tiktok API。我想控制台记录整个响应,以及 stats.videoCount 或 stats.viewCount 等结果。

部分代码在这里:

fetch("https://api.promptapi.com/tiktok/hashtag/{planttrees}", requestOptions)
  .then(response => response.text())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));

成功返回以下 JSON 响应。

"{
    'challengeInfo': {
        'challenge': {
            'id': '50923585',
            'title': 'planttrees',
            'desc': '',
            'profileThumb': '',
            'profileMedium': '',
            'profileLarger': '',
            'coverThumb': '',
            'coverMedium': '',
            'coverLarger': '',
            'isCommerce': false
        },
        'stats': {
            'videoCount': 1420,
            'viewCount': 4500000
        },
        'challengeAnnouncement': {
            'body': '',
            'title': ''
        }
    },
    'shareMeta': {
        'title': '#planttrees on TikTok',
        'desc': '4.0m views - Watch awesome short videos created with trending hashtag #planttrees'
    }
}
"

console.log(result)
console.log(response)
console.log(JSON.stringify(result));
console.log(JSON.stringify(response));

不工作。如何在控制台中记录此响应?

4

1 回答 1

0

您可以将控制台日志放在 API 调用的 .then 函数中。

fetch("https://api.promptapi.com/tiktok/hashtag/{planttrees}", requestOptions)
  .then(response => {
      console.log(response);
      console.log(response.stats);
      console.log(response.stats.viewCount);
   }
  .catch(error => console.log('error', error));
于 2021-03-15T13:43:59.980 回答