All Projects → jlobos → instagram-stories

jlobos / instagram-stories

Licence: MIT License
Get the Instagram Stories in Node.js and Browser

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to instagram-stories

Zuck.js
A javascript library that lets you add stories EVERYWHERE.
Stars: ✭ 3,396 (+3848.84%)
Mutual labels:  stories, instagram, facebook, story
Photoeditor
A Photo Editor library with simple, easy support for image editing using paints,text,filters,emoji and Sticker like stories.
Stars: ✭ 3,105 (+3510.47%)
Mutual labels:  stories, instagram, facebook
Ananas
An easy image editor integration for your Android apps.
Stars: ✭ 186 (+116.28%)
Mutual labels:  stories, instagram, facebook
MyIGBot
MyIGBot is a Private API for Instagram to like, follow, comment, view & intaract with stories, upload post & stories, get all information about a user/posts and get posts based on locations/hashtags. It also supports proxy.
Stars: ✭ 137 (+59.3%)
Mutual labels:  stories, instagram, story
Pow assent
Multi-provider authentication for your Pow enabled app
Stars: ✭ 236 (+174.42%)
Mutual labels:  instagram, facebook
Swiftui Animation
SwiftUI Animation
Stars: ✭ 233 (+170.93%)
Mutual labels:  instagram, facebook
Hackers Tool Kit
Its a framework filled with alot of options and hacking tools you use directly in the script from brute forcing to payload making im still adding more stuff i now have another tool out called htkl-lite its hackers-tool-kit just not as big and messy to see updates check on my instagram @tuf_unkn0wn or if there are any problems message me on instagram
Stars: ✭ 211 (+145.35%)
Mutual labels:  instagram, facebook
Whizzz-The-ChatApp
Whizzz is a real-time, one-to-one Android chat application made using Firebase, a beautiful user interface, and a push-notification feature.
Stars: ✭ 66 (-23.26%)
Mutual labels:  instagram, facebook
Social-Media-Automation
Automate social media because you don't have to be active on all of them😉. Best way to be active on all social media without actually being active on them. 😃
Stars: ✭ 186 (+116.28%)
Mutual labels:  instagram, facebook
Skeleton
Skeleton is a Social Engineering tool attack switcher
Stars: ✭ 44 (-48.84%)
Mutual labels:  instagram, facebook
CollectionLayouts
A collection of UICollectionViewLayouts
Stars: ✭ 64 (-25.58%)
Mutual labels:  stories, instagram
Rhplaceholder
Show pleasant loading view for your users 😍
Stars: ✭ 238 (+176.74%)
Mutual labels:  instagram, facebook
Major Scrapy Spiders
Scrapy spiders of major websites. Google Play Store, Facebook, Instagram, Ebay, YTS Movies, Amazon
Stars: ✭ 223 (+159.3%)
Mutual labels:  instagram, facebook
VKRdownloader
Vkrdownloader: All in one Video Downloader - Download videos from facebook twitter youtube tiktok and 1000+ other sites . YouTube downloader , facebook downloader . made by Vijay Kumar
Stars: ✭ 25 (-70.93%)
Mutual labels:  instagram, facebook
SocialInfo4J
fetch data from Facebook, Instagram and LinkedIn
Stars: ✭ 44 (-48.84%)
Mutual labels:  instagram, facebook
spark-ar-creators
List of 9500 (and counting) Spark AR Creators. Open an issue or contact me if you want to be added.❤️
Stars: ✭ 122 (+41.86%)
Mutual labels:  instagram, facebook
Streamwall
Display a mosaic of livestreams. Built for streaming.
Stars: ✭ 160 (+86.05%)
Mutual labels:  instagram, facebook
Postwill
Posting to the most popular social media from Ruby
Stars: ✭ 181 (+110.47%)
Mutual labels:  instagram, facebook
hashtag.io
Hashtag.io is a PHP based social networking website, which supports exclusive multimedia content, sharing and private or group messaging service.
Stars: ✭ 64 (-25.58%)
Mutual labels:  instagram, facebook
IGStoryButtonKit
IGStoryButtonKit provides an easy-to-use button with rich animation and multiple way inspired by instagram story/stories.
Stars: ✭ 31 (-63.95%)
Mutual labels:  instagram, story

instagram-stories

Build Status XO code style Gitter

Get the Instagram Stories in Node.js

Install

npm install --save instagram-stories

Usage

const {
  getStories,
  getStoriesFeed,
  getMediaByCode,
  getUserByUsername
} = require('instagram-stories')

// Get stories of Instagram
// id:        account id for get stories
// userid:    me id
// sessionid: value of cookies from Instagram
getStories({ id: 25025320, userid: 1284161654, sessionid: '' }).then(stories => {
  console.log(stories)
})

// Get stories of people you follow
getStoriesFeed({ userid: 1284161654, userid: 1284161654, sessionid: '' }).then(feed => {
  console.log(feed)
})

getMediaByCode({ code: 'BUu14BdBkO5', userid: 1284161654, sessionid: '' }).then(media => {
  console.log(media)
})

getUserByUsername({ username: 'instagram', userid: 1284161654, sessionid: '' }).then(({ user }) => {
  console.log(user.id)
})

getMediaByLocation({ id: '292188415', userid: 1284161654, sessionid: '' }).then(({ location }) => {
  console.log(location.name)
})

License

MIT © Jesús Lobos, Dmitry Konstantinov

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].