本文整理汇总了Python中stravalib.Client.deauthorize方法的典型用法代码示例。如果您正苦于以下问题:Python Client.deauthorize方法的具体用法?Python Client.deauthorize怎么用?Python Client.deauthorize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类stravalib.Client
的用法示例。
在下文中一共展示了Client.deauthorize方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: deauthorize_strava
# 需要导入模块: from stravalib import Client [as 别名]
# 或者: from stravalib.Client import deauthorize [as 别名]
def deauthorize_strava(id):
racer = Racer.query.get_or_404(id)
if racer.strava_access_token:
strava_access_token = racer.strava_access_token
strava_client = Client(strava_access_token)
strava_client.deauthorize()
racer.strava_access_token = None
racer.strava_id = None
racer.strava_email = None
racer.strava_profile_url = None
racer.strava_profile_last_fetch = None
current_app.logger.info('%s[%d]', racer.name, racer.id)
db.session.commit()
flash('Racer ' + racer.name + ' deauthorized from Strava!')
return redirect(url_for('racer.details', id=id))