我正在使用此代码。直到我在代码中包含print tweepy,GAE页面返回为空白;没有错误,或任何事情。它从命令行运行良好。为什么会这样?有没有更好的方法来使这项工作?
import tweepy
print tweepy
CONSUMER_KEY = "mine"
CONSUMER_SECRET = "mine"
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
try:
print auth.get_authorization_url()
except Exception,e: print str(e)