Как получить заголовок и другие ключи от Reddit json? - PullRequest
0 голосов
/ 10 апреля 2020

Вот бот, который выбирает данные json, а затем публикует изображение гамбургера.

Я хочу также получить заголовок и другие объекты из этого поста, но я просто поражен тем, как правильно его синтаксис. Было бы неплохо получить помощь!

    function loadBurgers() {
  fetch('https://www.reddit.com/r/burgers.json?limit=100&?sort=top&t=all')
    .then(res => res.json())
    .then(json => json.data.children.map(v => v.data.url))
    .then(urls1 => postRandomBurger(urls1)) 

  }

    function postRandomBurger(urls1) {
  const randomURL = urls1[Math.floor(Math.random() * urls1.length) + 1];
  const embed = new Discord.MessageEmbed({
      title: 'title from json here!',
      permalink: 'permalink from json here!',
      image: {
      url: randomURL
    }
  });
...