1.0.3 • Published 4 years ago

instagram-profile-get v1.0.3

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

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);
    }
})();