1

我正在使用来自 google-api-python-client 的内置 revoke 方法从 django 应用程序创建注销功能,但它似乎不起作用。这是我的代码。

def google_logout(request, user_id = None):
    storage = Storage(CredentialsModel, 'id', user_id, 'credential')
    credential = storage.get()

    if credential is not None:
        cr_json = credential.to_json()
        credential = credential.new_from_json(cr_json)

        http = httplib2.Http()
        http = credential.authorize(http)

        try:
        # Don't know yet why this is always raising an exception.
            credential.revoke(http)
            storage.delete()
        except TokenRevokeError:
            return HttpResponseBadRequest('Invalid Token.')
    else:
        return redirect('authentication:google_login')

这在我使用 django 1.4.5 时有效,但后来我需要升级到 1.5.1,现在它无法正常工作。这是一个django问题吗?我打赌不会。请帮忙。

PS 我知道我可以通过手动将 access_token 传递给这个 url https://accounts.google.com/o/oauth2/revoke?token= {token} 来撤销令牌,但我想使用 api 中提供的方法。

4

1 回答 1

0

即使access_type设置为offline,如果您过去收到刷新令牌并且没有另外发送查询参数approval_prompt参数设置为 ,则您可能无法获得刷新令牌force

这尤其令人沮丧,并且可能在调试撤销期间发生。由于您可能会经常批准和删除凭据,因此有时 Google 可能会记住批准并授权,而无需经过强制批准流程,在这种情况下,您将不会获得客户端 API 撤销所需的刷新令牌。

于 2014-03-26T01:43:25.603 回答