Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

scraper-instagram

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scraper-instagram - npm Package Compare versions

Comparing version 1.0.13 to 1.0.14

5

index.js

@@ -144,9 +144,6 @@ 'use strict';

}
setAccountStoryAsRead(){
//
}
getProfile(username = this.username, anonymous = false){
return new Promise((resolve, reject) => self.get(username, anonymous ? null : this.sessionId)
.then(profile => {
const access = profile['is_private'] ? !!profile['followed_by_viewer'] : true;
const access = !profile['is_private'] || !!profile['followed_by_viewer'] || profile['username'] === this.username;
resolve({

@@ -153,0 +150,0 @@ id: profile['id'],

2

package.json
{
"name": "scraper-instagram",
"version": "1.0.13",
"version": "1.0.14",
"description": "Instagram scraper without authenticated API",

@@ -5,0 +5,0 @@ "keywords": [

@@ -452,2 +452,3 @@ # ig-scraper

* `1.0.12` (2020-06-16) • Small fix & refactor
* `1.0.13` (2020-07-10) • Added support for stories
* `1.0.13` (2020-07-10) • Added support for stories
* `1.0.14` (2020-10-17) • Fixed access to own private profile
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc