我试图使用flask_oauthlib访问我的twitter api,但我得到的只是错误:未能生成请求令牌。这是密码。
from flask_oauthlib.client import OAuth from flask import Flask, url_for, request, jsonify app = Flask(__name__) oauth = OAuth() twitter = oauth.remote_app( 'twitter', base_url='https://api.twitter.com/1/', request_token_url='https://api.twitter.com/oauth/request_token', access_token_url='https://api.twitter.com/oauth/access_token', authorize_url='https://api.twitter.com/oauth/authorize', consumer_key='dOJjyxB6gxXWTjdtfPUZcZPjl', consumer_secret='im not telling you', ) @app.route('/login') def login(): return twitter.authorize(callback=url_for('authorized', next=request.args.get('next') or request.referrer or None)) @app.route('/authorized') @twitter.authorized_handler def authorized(resp): if resp is None: return 'Access denied: error=%s' % ( request.args['error'] ) if 'oauth_token' in resp: # session['example_oauth'] = resp print(resp) return jsonify(resp) return str(resp) if __name__ == '__main__': app.run(port=8000, debug=True)
这在使用http://term.ie/oauth/example/client.php时不起作用,我设法获得了一个请求令牌。
我用https://github.com/lepture/example-oauth1-server/blob/master/client.py和http://flask-oauthlib.readthedocs.io/en/latest/client.html启发了自己
编辑
奇怪的事实:我尝试了这里的代码:https://github.com/lepture/flask-oauthlib/blob/master/example/twitter.py,我没有更改密钥和秘密,它起作用了。
所以我试着把它们改成我自己的凭据,结果它停止工作了。我真的无法理解...
好的,我找到问题了。在使用flask-oauthlib时,回调URL似乎是必需的。所以我添加了一个假的,因为我仍然在localhost上,它解决了这个问题。