Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
basic-instagram-user-details
Advanced tools
A simple API to scrap basic details of an Instagram user
⚫
A simple API to scrap details of any Instagram user
$ npm install --save basic-instagram-user-details
User ID
const bud = require('basic-instagram-user-details');
const user = 'iama_rishi';
bud(user, 'id').then(id => {
console.log(id);
// => { data: '259220806' }
});
OR
bud(user, 'id').then(res => {
const userId = res.data;
console.log(userId);
// => 259220806
});
Full Name
bud(user, 'fullname').then(fullname => {
console.log(fullname);
// => { data: 'Rishi Giri' }
});
bud('username', 'options')
username
:
string
options
:
string
Options | Output |
---|---|
id | string |
fullname | string |
username | string |
bio | string |
externalUrl | string |
linkshimmed | string |
posts | string |
followers | string |
following | string |
private | boolean |
verified | boolean |
connected | object |
Why? Because Instagram is fucking up with everything.
instavim
:
Command line Instagram media downloader.
istalk
:
Stalk Instagram users from the command line!
instagram-id-of
:
Find UserID of any Instagram user from command line!
instagram-profile-picture
:
An API to get url to the profile picture and other Instagram medias.
instagram-links
:
Get links to the publically shared media on Instagram.
MIT © Rishi Giri;
FAQs
A simple API to scrap basic details of an Instagram user
The npm package basic-instagram-user-details receives a total of 32 weekly downloads. As such, basic-instagram-user-details popularity was classified as not popular.
We found that basic-instagram-user-details demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.