1.0.2 • Published 5 years ago

instory v1.0.2

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

Install

$ npm install --save instory

Usage

  • all
const instory = require('instory');

instory('9gag').then(res => {
  console.log(res);
  /*
  { story:
   [ 'https://scontent-lax3-2.cdninstagram.com/vp/../t50.12441-16/...8147460402176414839_n.mp4',
     'https://scontent-lax3-2.cdninstagram.com/vp/../t50.12441-16/...7961590752994505111_n.jpg' ] }
  */
})
  • exclude videos
instory('9gag', 'video').then(res => {
  console.log(res);
  /*
  ['https://scontent-lax3-2.cdninstagram.com/vp/../t50.12441-16/...7961590752994505111_n.jpg']
  */
});
  • exclude images
instory('9gag', 'image').then(res => {
  console.log(res);
  /*
  ['https://scontent-lax3-2.cdninstagram.com/vp/../t50.12441-16/...8147460402176414839_n.mp4']
  */
});

API

instory(username);
instory(username, exclude)
  • username : string
  • exclude : string ~ optional

Related

  • instories : Download Instagram Stories from the Command-line!

NOTE : This module is built upon the API used by Stories IG.

License

MIT © Rishi Giri