-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathconfig.php
More file actions
58 lines (53 loc) · 1.22 KB
/
config.php
File metadata and controls
58 lines (53 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
# Config this the way you want the script to behave
# For help look at the readme
# https://github.com/doefler/Instagram-growth
$conf = array(
'username' => 'YOUR_USERNAME',
'access_token' => 'YOUR_ACCESS_TOKEN',
'debugging' => true,
'like' => array(
'do' => true,
'min_likes' => 20,
'max_likes' => 0
),
'follow' => array(
'do' => true,
'min_likes' => 50,
'max_likes' => 0,
'like_recent' => array(
'do' => true,
'count' => 3
)
),
'comment' => array(
'do' => false,
'min_likes' => 80,
'max_likes' => 0
)
);
# Insert the tags you want to explore with the script
# Exclude the hashtag itself "#" when you write your tags
# Be aware that the more tags you add, the longer time the script will take to perform.
$tags = array(
'TAG_1',
'TAG_2',
'TAG_3',
);
# Write different ways of saying hello in comments.
# These are used randomly when generating comments
$hello = array(
'Hey',
'Hello',
'Hey there',
'Hi',
);
# Write different ways of saying complimenting the image in comments.
# These are used randomly when generating comments
$praise = array(
', your picture is really nice',
', you should visit on YOUR_WEBSITE',
', cool stuff',
', have you seen YOUR_BRAND_NAME?',
);
?>