const fetch = require("node-fetch");
async function gen() {
await fetch( "https://www.reddit.com/r/memes/hot/.json?count=100"
)
.then(res => res.json())
.then(json => {
let postID =
json.data.children[
Math.floor(Math.random() * json.data.children.length)
];
result = {
image: postID.data.url,
category: postID.data.link_flair_text,
caption: postID.data.title,
permalink: postID.data.permalink
};
});
return result;
};
console.log(gen())
const fetch = require("node-fetch");
async function gen() {
await fetch("https://www.reddit.com/r/memes/hot/.json?count=100")
.then(res => res.json())
.then(json => {
let postID =
json.data.children[
Math.floor(Math.random() * json.data.children.length)
];
result = {
image: postID.data.url,
category: postID.data.link_flair_text,
caption: postID.data.title,
permalink: postID.data.permalink
};
});
return result;
};
console.log(gen())
const fetch = require("node-fetch");
async function gen() {
const response = await fetch("https://www.reddit.com/r/memes/hot/.json?count=100");
const json = await response.json();
const post = json.data.children[Math.floor(Math.random() * json.data.children.length)];
return {
image: post.data.url,
category: post.data.link_flair_text,
caption: post.data.title,
permalink: post.data.permalink
};
}
gen().then(x=>console.log(x));