From 9a50ccba1c77cba504b7458e144e6fc5d10b55d1 Mon Sep 17 00:00:00 2001 From: iximeow Date: Tue, 17 Oct 2017 00:11:22 -0700 Subject: check followers on startup too --- src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main.rs') 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] } -- cgit v1.1