I trying to receive title and preview image from open graph meta tags via Metascraper framework. When I trying it on post or job url I receive correct answer, but when I trying to receive info about user profile I receive Response code 999 (Request denied)
await (async () => {
const { body: html, url } = await got(encodeURI(link))
const metadata = await metascraper({ html, url })
this.logger.info('result: ',JSON.stringify(metadata))
})()