tducasse/go-instabot

How to Add More Tags?

jatinchoudhary opened this issue · 1 comments

I want to add more tags. Please tell me how can I do that?

I'd recommend you follow the instructions in the README. The section of the config file that's relevant is this one

    "tags" : {                              // this is the list of hashtags you want to explore
        "dog" : {                           // do not put the '#' symbol
            "like" : 3,                     // the number you want to like
            "comment" : 2,                  // the number you want to comment
            "follow" : 1                    // the number you want to follow
        },
        "cat" : {                           // another hashtag ('#cat')
            "like" : 3,
            "comment" : 2,
            "follow" : 1
        }                                   // following these examples, add as many as you want
    },