Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 410 Bytes

README.md

File metadata and controls

28 lines (16 loc) · 410 Bytes

node-pinterest-bot

*Example

async function main() {
    let defaults = {
        debug: true,
        mail: 'veryStrong@mail',
        username: "veryStrongUsername",
        password: "veryStrongPass",


    };
    let pinbot     = new PinBot(defaults);
    await pinbot.auth();

    let followers     = await pinbot.board().followers("300826518798656131", 0);

   
}
main();