Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 572 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 572 Bytes
let insta = require("@gustavosizilio/insta_client");

insta.getUser({identifier: "gustavo.sizilio"})
    .then(data => {
        console.log(data); //Threat the data
    })

insta.getUserPosts({identifier: "26669533", limit: 10})
    .then(data => {
        console.log(data); //Threat the data
    })

insta.getPostDetails({identifier: "SQotORh6Gz"})
    .then(data => {
        console.log(data); //Threat the data
    })

insta.getPostLikes({identifier: "SQotORh6Gz", limit: 80})
    .then(data => {
        console.log(data); //Threat the data
    })