aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2017-10-17 00:11:22 -0700
committeriximeow <me@iximeow.net>2017-10-17 00:11:56 -0700
commit9a50ccba1c77cba504b7458e144e6fc5d10b55d1 (patch)
tree9f5975587d77e96d00f6c89260e8976f6c5e4215 /src/main.rs
parent9b3b0c356af994c642e7c19af671471125fbccd2 (diff)
check followers on startup too
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 820bcb1..0526c06 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -40,6 +40,7 @@ static STREAMURL: &str = "https://userstream.twitter.com/1.1/user.json?tweet_mod
static TWEET_LOOKUP_URL: &str = "https://api.twitter.com/1.1/statuses/show.json?tweet_mode=extended";
static USER_LOOKUP_URL: &str = "https://api.twitter.com/1.1/users/show.json";
static ACCOUNT_SETTINGS_URL: &str = "https://api.twitter.com/1.1/account/settings.json";
+static GET_FOLLOWER_IDS_URL: &str = "https://api.twitter.com/1.1/followers/ids.json?stringify_ids=true";
header! { (Authorization, "Authorization") => [String] }
header! { (Accept, "Accept") => [String] }