TobyG74 / tiktok-api-dl

Scrapper for download Video, Image, Music from Tiktok
Apache License 2.0
69 stars 18 forks source link

Cannot read property 'responseUrl' of undefined #9

Closed exitdump closed 11 months ago

exitdump commented 11 months ago

const getApiData = async () => { const url = 'https://www.tiktok.com/@babulhossain2165/video/7283850685949529345'

TiktokDL(url)
.then( result => {
  return result.json();
}).then( json => console.log(json) )
.catch( err => {
  console.log('There has been a problem with your fetch operation: ' + err.message);
  throw err;
})

using with React Native

TobyG74 commented 11 months ago

Try again using version 2

TiktokDL(url, { version: "v2" })