I’m attempting to request the tweets of mulitple users usign app-only authentication. No problems getting the bearer token or requesting tweets for the first 8 users.
Example for the 8th user:
HTTP Response for CoachJBGrimes:{
“Cache-Control” = “no-cache, no-store, must-revalidate, pre-check=0, post-check=0”;
“Content-Encoding” = gzip;
“Content-Length” = 907;
“Content-Type” = “application/json;charset=utf-8”;
Date = “Thu, 08 Aug 2013 17:09:41 GMT”;
Expires = “Tue, 31 Mar 1981 05:00:00 GMT”;
“Last-Modified” = “Thu, 08 Aug 2013 17:09:41 GMT”;
Pragma = “no-cache”;
Server = tfe;
Status = “200 OK”;
“Strict-Transport-Security” = “max-age=631138519”;
“x-access-level” = read;
“x-frame-options” = SAMEORIGIN;
“x-rate-limit-limit” = 15;
“x-rate-limit-remaining” = 0;
“x-rate-limit-reset” = 1375982680;
“x-transaction” = deffd8ccf1d6bfee;
}
However, when I request the next user I get:
HTTP Response for CoachTonyBarbee:{
Connection = close;
“Content-Encoding” = gzip;
“Content-Type” = “application/json; charset=utf-8”;
Date = “Thu, 08 Aug 2013 17:09:42 UTC”;
Server = tfe;
“Strict-Transport-Security” = “max-age=631138519”;
“x-rate-limit-limit” = 15;
“x-rate-limit-remaining” = 0;
“x-rate-limit-reset” = 1375982680;
}
Am I hitting a rate limit? Can I only make so many requests? Timeline requests for 10-15 users doesn’t seem like its asking too much…