5

我正在使用 tweepy 制作一个 twitter 应用程序。当用户推文/更新个人资料等时,他们会收到一些错误。我想对错误进行分类并为用户提供更多信息。

try:
    tweet/update profile/ follow....

except tweepy.TweepError, e:

    if tweepy.TweepError is "Account update failed: Description is too long (maximum is 160 characters)"
        Do something
    if tweepy.TweepError is "Failed to send request: Invalid request URL: http://api.twitter.com/1/account/update_profile.json?location=%E5%85%B5%E5%BA%A"
        Do something
    if tweepy.TweepError is "[{u'message': u'Over capacity', u'code': 130}]" 
        Do something

分类错误的唯一方法是e与字符串进行比较,例如,Account update failed: Description is too long (maximum is 160 characters)

4

1 回答 1

1

是的,这是现在唯一的方法。只定义了一个TweepError异常。它在整个应用程序中以不同的文本出现。

这是github 上相关的未解决问题。所以以后有机会改进。

于 2013-05-04T20:53:44.057 回答