Home > Blockchain >  get instagram posts with node js with instagram username
get instagram posts with node js with instagram username

Time:03-16

I am looking for ways to get users posts with graph instagram and node js but i could not find api to get another user posts with access token I only have access to my own posts with json data it would be great if you show me best way

CodePudding user response:

might be a job for python just saying, it is definitely possible in js but as it seems, you will need to make EVERYTHING from 0 - 100, i recommend just using python for that

CodePudding user response:

Have a look at this it may help a bit Link

and this to take photos of any user Link

CodePudding user response:

Try this node js library: https://www.npmjs.com/package/instagram-web-api#getphotosbyusernameparams

There is .getPhotosByUsername method which should work for you

  • Related