-
Notifications
You must be signed in to change notification settings - Fork 0
/
feotweet.sample.toml
43 lines (34 loc) · 1.12 KB
/
feotweet.sample.toml
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
[twitter]
# Create an app at: https://developer.twitter.com/en/apps
# Then put tokens here:
# AKA: "API token"
consumerKey = ""
# AKA: "API Secret Key"
consumerSecret = ""
# AKA: "Authentication Tokens"
accessTokenKey = ""
accessTokenSecret = ""
[feoblog]
server = "http://127.0.0.1:8080"
[twitter.homeTimeline]
# This syncs the current Twitter user's home timeline (i.e.: posts from those they follow)
# from Twitter into this feoblog user's blog:
userID = ""
password = ""
# Don't bother syncing tweets/retweets/quote-tweets from these twitter users:
skipUsers = [
"chattyMcChatterson",
]
[[twitter.userTimelines]]
twitterScreenName = "twitterName"
# Sync all tweets from the above user to a this FeoBlog user.
# Note: We use the timestamps of posts to know where to pick up sync, so
# this FeoBlog userID should contain *only* these sync'd posts:
userID = ""
password = ""
# Should we copy attachments into FeoBlog? (Default: false)
# Note: this ONLY copies attachments from $twitterScreeName, not quote tweets
# or retweets. (Those add up quick!)
copyAttachments = true
skipReplies = false # default
skipRetweets = false # default