
Security News
Vite+ Joins the Push to Consolidate JavaScript Tooling
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
instagram-tagscrap-filecache
Advanced tools
NPM module for loading images from Instagram by hashtag without API access by means of scraping.
NodeJS module for loading posts from Instagram by hashtag, individual post pages and locationpages without API access by means of scraping.
Instagram has gone to great lengths to prevent scraping and other unauthorized access to their public content. This module is dependant on the markup the public-facing instagram.com. Should that change this module might also stop working as intended. It also only loads the 17 posts that are displayed on first-load without following pagination to load more images. You should take this into consideration when deciding whether this module will work for you.
npm install instagram-tagscrap-filecache
The most basic usage will allow you to load the first 17 posts for any given hashtag with basic info and URLs to the full post media.
var Instagram = require('instagram-tagscrap-filecache');
var ig = new Instagram({
cache : {
prefix : 'ig-',
isIgnore : false,
ttl : 60 * 30, // 30 min
tmpDir : null
}
});
ig.scrapeTagPage('bernie').then(function(result){
console.dir(result);
})
Example response:
{
"total": 5854,
"count": 17,
"media": [{
"code": "BMm39DKD6DB",
"date": 1478733183,
"dimensions": {
"width": 750,
"height": 750
},
"comments_disabled": false,
"comments": {
"count": 0
},
"caption": "Lorem ipsum... #quote #margaretmead #restmycase",
"likes": {
"count": 52
},
"owner": {
"id": "393767493"
},
"thumbnail_src": "https://instagram.fosl1-1.fna.fbcdn.net/t51.2885-15/s640x640/sh0.08/e35/14719160_341462716214777_3017677686123266048_n.jpg?ig_cache_key=MTM4MDAzNjQyMzY3MTg0OTE1Mw%3D%3D.2",
"is_video": false,
"id": "1380036423671849153",
"display_src": "https://instagram.fosl1-1.fna.fbcdn.net/t51.2885-15/s750x750/sh0.08/e35/14719160_341462716214777_3017677686123266048_n.jpg?ig_cache_key=MTM4MDAzNjQyMzY3MTg0OTE1Mw%3D%3D.2"
}
....
}
As you can see, only the basic info required for listing images is returned. If you need further info, like more info about the owner of the post or the location, you can perform these queries separately or all in one go with the included deepScrapeTagPage
method which populates the original tag page response with the corresponding data from the postPage and locationPage methods.
var Instagram = require('instagram-tagscrap-filecache');
var ig = new Instagram();
ig.deepScrapeTagPage('bernie').then(function(result){
console.dir(result);
})
The response from this call is so vast that to see what it contains I recommend you perform it and log out the result.
The post page scraping method takes a code
argument (like the one returned for each post via the scrapeTagPage
).
var Instagram = require('instagram-tagscrap-filecache');
var ig = new Instagram();
ig.scrapePostPage('BMm39DKD6DB').then(function(result){
console.dir(result);
})
The location page scraping method takes a numeric id
argument (like the one returned for each post via the scrapeTagPage
) and returns lat/lng coordinates for the post location among many other things.
var Instagram = require('instagram-tagscrap-filecache');
var ig = new Instagram();
ig.scrapeLocationPage(542401).then(function(result){
console.dir(result);
})
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
Security News
Ruby Central’s incident report on the RubyGems.org access dispute sparks backlash from former maintainers and renewed debate over project governance.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.