Re: A method of get favorites using python-twitter

2008-10-11 Thread Alex Payne
Handy. You may want to contact the author of this library directly with a patch. -- Alex Payne On Oct 11, 2008, at 6:26, Meaglith Ma <[EMAIL PROTECTED]> wrote: def GetFavorites(self, user=None, count=None, since=None): if user: url = 'http://twitter.com/favorites/%s.json' % user

Re: Whitelist rejected clarify please?

2008-10-11 Thread Alex Payne
Please contact me off-list with a detailed description of your project and the API methods it calls, and at what frequency. -- Alex Payne On Oct 11, 2008, at 8:50, ibumoden <[EMAIL PROTECTED]> wrote: Please excuse me for my lack of knowledge in the API and development matters. I am not th

Re: Topics

2008-10-11 Thread Alex Payne
Yes, quite right. The Search API is your best bet for the time being. -- Alex Payne On Oct 10, 2008, at 17:59, "Mike Scott" <[EMAIL PROTECTED]> wrote: From what I understand you're going to have to replicate this yourself no doubt using the twitter API. The page that has been developed for

Re: statuses/update.json is not returning proper data

2008-10-11 Thread Alex Payne
I'm not near a computer this weekend, but I've asked our team and the on-call engineer to look into it. -- Alex Payne On Oct 11, 2008, at 10:02, "Ed Finkler" <[EMAIL PROTECTED]> wrote: The JSON response for update.json seems to be returning the wrong data. I'd expect a standard status obj

statuses/update.json is not returning proper data

2008-10-11 Thread Ed Finkler
The JSON response for update.json seems to be returning the wrong data. I'd expect a standard status object, but I'm getting a completely different object that looks to be specific to a particular application (maybe the Twitter.com web site). The Request: --- P

Whitelist rejected clarify please?

2008-10-11 Thread ibumoden
Please excuse me for my lack of knowledge in the API and development matters. I am not the guy who writes the code but we're stuck. We noticed that our app quit working a while back. After much research we came to a conclusion the IP was probably blacklisted :( we tried to submit it for white list

A method of get favorites using python-twitter

2008-10-11 Thread Meaglith Ma
def GetFavorites(self, user=None, count=None, since=None): if user: url = 'http://twitter.com/favorites/%s.json' % user elif not user and not self._username: raise TwitterError("User must be specified if API is not authenticated.") else: url = 'http://twitter.com/fa