通过运行在GAE上的应用程序,我希望能够定期发布推文。
我有一个代码,可以从本地主机发布推文。
import urllib
import urllib2
import simplejson as json
import oauth2 as oauth
consumer_key = ""
consumer_key_secret = ""
oauth_token = ""
oauth_token_secret = ""
consumer = oauth.Consumer(key=consumer_key, secret=consumer_key_secret)
access_token = oauth.Token(key=oauth_token, secret=oauth_token_secret)
client = oauth.Client(consumer, access_token)
url = "http://api.twitter.com/1/statuses/update.json"
data = {'status': 'post this'}
response, data = client.request(url,'POST',urllib.urlencode(data))
由于oauth2库在GAE上不可用,因此我想知道能够在GAE上运行代码的最简单方法。
最佳答案
您可以检查此exmpale。需要与您的源一起上传oauth2文件夹。
关于python - 在GAE上替代oauth2(Python模块)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7418790/