yauhen-l / tinder-like-bot

Automate your swipes in Tinder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tinder-like-bot

Installation

> go get github.com/yauhen-l/tinder-like-bot
> go install github.com/yauhen-l/tinder-like-bot

Usage example:

> $GOPATH/bin/tinder-like-bot -fb-token %facebook_access_token%

The easiest way to get %facebook_access_token% is to use link below, log in and then pick the auth token out of the URL you are redirected to: https://www.facebook.com/dialog/oauth?client_id=464891386855067&redirect_uri=https://www.facebook.com/connect/login_success.html&scope=basic_info,email,public_profile,user_about_me,user_activities,user_birthday,user_education_history,user_friends,user_interests,user_likes,user_location,user_photos,user_relationship_details&response_type=token

Params and it's default values:

Usage of ./tinder-like-bot:
  -dry-run
        do not like or pass
  -fb-token string
        facebook access_token
  -filter string
        path to filter file (default "filter.json")
  -yes-limit int
        limit of likes to stop (default 30)

filter.json contents description:

{
    "ExcludeName": ["sam", "bob", "Anna", "Olya"],   // 'pass' if any matched case-insensitive
    "Schools": ["oxford", "University"],             // 'like' if any matched case-insensitive
    "CommonInterests": ["dog", "skiing"]             // 'like' if and matched case-insensitive
}

About

Automate your swipes in Tinder

License:MIT License


Languages

Language:Go 100.0%