-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtwitterConfig.xml
More file actions
36 lines (30 loc) · 1.04 KB
/
twitterConfig.xml
File metadata and controls
36 lines (30 loc) · 1.04 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
<?xml version="1.0" encoding="UTF-8"?>
<TwitterConfiguration>
<!--
API Keys for your twitter App
Replace with valid API keys to run the client
-->
<TwitterAPIKeys>
<consumerKey>*******************</consumerKey>
<consumerSecret>*****************</consumerSecret>
<accessToken>**************************</accessToken>
<accessTokenSecret>**********************</accessTokenSecret>
</TwitterAPIKeys>
<!--
Search configuration params are in effect if you are running the client in extraction mode
-->
<SearchConfiguration>
<!-- Username/Tweet handle of the user to search-->
<userToSearch>road_lk</userToSearch>
<!-- Maximum Number of Tweets to extract from the timeline-->
<maxTweetCount>250</maxTweetCount>
</SearchConfiguration>
<!--
Search configuration params are in effect if you are running the client in extraction mode
-->
<StreamingConfiguration>
<!-- TwitterIDs of the users to filter the stream for-->
<!-- road_lk = 808888003 -->
<followers>808888003</followers>
</StreamingConfiguration>
</TwitterConfiguration>