user-instagram-profile
v1.0.0
Published
Get user data and feed by scraping Instagram's user page. No need for O-Auth or API.
Downloads
12
Maintainers
Readme
Node-Instagram
This module allow you to get user data from instagram link.
Example:
const instagram = require("user-instagram")
instagram("https://www.instagram.com/edouard_courty")
.then(data => {
console.log(`Full name is: ${data.fullName}`)
})
.catch(e => {
// Error will trigger if the account link provided is false.
console.error(data)
})
This module only uses ES6 Promises. By the future, i'll update this module to add methods.