instagram-profile-get
v1.0.3
Published
Get image data from a public Instagram profile using Lambda. Note: Will not run locally unless you change executablePath variable to a local path of an exe of chrome.
Downloads
14
Maintainers
Readme
Instagram profile get
Get image data from a public Instagram profile
Install
npm i instagram-profile-get
Example usage
var instagramProfileGet = require('instagram-profile-get');
(async () => {
try {
const result = await instagramProfileGet('crossfitcornwall');
console.log(result);
} catch(err) {
console.log(err);
}
})();