gpt4 book ai didi

python - GAE 上 oauth2(Python 模块)的替代方案?

转载 作者:太空宇宙 更新时间:2023-11-03 19:27:50 26 4
gpt4 key购买 nike

通过在 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 上运行代码的最简单方法。

最佳答案

oauth2 是一个纯 python 模块;它应该可以在 App Engine 上正常运行 - 只需将其与您的应用程序捆绑在一起即可。

关于python - GAE 上 oauth2(Python 模块)的替代方案?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7418790/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com