-
Notifications
You must be signed in to change notification settings - Fork 18
/
config.php-dist
93 lines (69 loc) · 2.92 KB
/
config.php-dist
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
// * Fill in these values from your Twitter Developer Account.
// * Read the readme.md file for instructions on setting that up.
$token = 'XXXX';
$token_secret = 'XXXX';
$consumer_key = 'XXXX';
$consumer_secret = 'XXXX';
// * Enter your twitter username below. This is used for the home
// * view, and a default for lists if one isn't specified in the URL.
$screen_name = "XXXX";
// * Default max tweets to retrieve. Can be customized per type of query below, and in
// * URL by appending "&count=X" to any query.
// * Note: Count includes RTs, even if you exclude them below.
// * max value: 200
// * default: 10
$count = 10;
// * ***************************************************************
// * User Status Parameters
// * ***************************************************************
// * Max tweets to retrieve. Count includes RTs, even if you exclude them below.
// * max value: 200
// * default: $count
$user_count = $count;
// * Sets whether retweets are included in the timeline. Retweets count
// * towards the $count limit even if this is true, they're just hidden.
// * default: false
$user_include_rts = false;
// * Sets whether replies are included in the timeline. Replies count
// * towards the $count limit even if this is true, they're just hidden.
// * default: false
$user_include_replies = false;
// * ***************************************************************
// * List Parameters
// * ***************************************************************
// * Max tweets to retrieve. Count includes RTs, even if you exclude them below.
// * max value: 200
// * default: $count
$list_count = $count;
// * Sets whether retweets are included in the timeline. Retweets count
// * towards the $count limit even if this is true, they're just hidden.
// * default: true
$list_include_rts = false;
// * ***************************************************************
// * Home Timeline Parameters
// * ***************************************************************
// * Max tweets to retrieve. Count includes RTs, even if you exclude them below.
// * max value: 200
// * default: $count
$home_count = $count;
// * Sets whether retweets are included in the timeline. Retweets count
// * towards the $count limit even if this is true, they're just hidden.
// * default: true
$home_include_rts = true;
// * Sets whether replies are included in the timeline. Replies count
// * towards the $count limit even if this is true, they're just hidden.
// * default: true
$home_include_replies = true;
// * ***************************************************************
// * Search Parameters
// * ***************************************************************
// * Max tweets to retrieve. Count includes RTs, even if you exclude them below.
// * max value: 200
// * default: $count
$search_count = $count;
// * Type of search results to return.
// * options: mixed|recent|popular
// * default: mixed
$search_result_type = 'mixed';
?>