开发者

twitter request limit

Regarding the twitter API request limit, how does one counts as a request?

I'm using python-twitter, so if I have

 client = twitter.Api(username='acc',password='pw')
 self.client.GetFriends(result[0])

Does this count as 1 request? Or开发者_运维技巧 as many as the number of friends I have? I asked this because I have the following code:

for user in friends:
        name = user.GetScreenName()
        print 'username is ' + name
        try:             
           messages = self.client.GetUserTimeline(user= name,count = 15)
           for message in messages:
              print 'message: ' + message.getText()

And I already got a bad request error code without even displaying a single status message.


That's 1 request. For that request Twitter will return a json file representing the list of friends.

Also the twitter.API call also produce a request, but this one is not counted for the limit stuff.

You can read about it in apiwiki

You can also request your limit status.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜