我正在工作:https ://github.com/singingwolfboy/flask-dance-google-sqla并让 OAuth 模板开始工作。
我一直在尝试获取一些代码来使用 Google Calendar API,使用模板设置方式来做到这一点的最佳方法是什么?
这是定向的正确方法吗?或者是否有一个带有附加标头的会话对象可以直接使用?
我一直在尝试获取令牌(来自 SQLAlchemy 数据库)并执行 requests.post 之类的操作,但返回 Not Found。
def get_token():
return OAuth.query.filter_by(user_id=current_user.id).first().token
@app.route("/get_events")
def get_events():
token = str(get_token())
req = requests.post('https://www.googleapis.com/calendar/v3', headers={'Authorization': token})