It’s at data.user.avatar_template
in that JSON. You can replace {size}
with the size you want.
// something like this
const size = 240;
const avatarTemplate = data.user.avatar_template;
const avatarURL = avatarTemplate.replace(/\{size\}/, size);
It’s at data.user.avatar_template
in that JSON. You can replace {size}
with the size you want.
// something like this
const size = 240;
const avatarTemplate = data.user.avatar_template;
const avatarURL = avatarTemplate.replace(/\{size\}/, size);