9

间歇性地收到此错误

请求https://www.googleapis.com/discovery/v1/apis/gmail/v1/rest时的 HttpError 403返回“调用者没有权限”

它有时有效,有时无效。我在 oauth2 操场上看到了同样的问题

这是我的代码 -

googlecredentials = GoogleCredentials(
    access_token=None,
    client_id='xxx',
    client_secret='xxxx',
    refresh_token='xxxx',
    token_expiry=None,
    token_uri="https://www.googleapis.com/oauth2/v3/token", 
    user_agent='Python client library'
)

service = build('gmail', 'v1', credentials=googlecredentials)

results = service.users().labels().list(userId='me').execute()
labels = results.get('labels', [])
response = service.users().messages().list(userId='me', q='subject:FDA').execute()
print(response)
4

2 回答 2

1

我最近也面临这个问题。我已经使用 GMAIL API 一年多了,我从来没有遇到过这个问题。我不知道我们这边是否存在问题或 Gmail 更改了他们的使用政策。但是,无论如何,我确实设法找到了解决方案。我遇到的主要问题是我的信用(在你的情况下是谷歌凭据)已经过期,每次过期我都必须刷新它们。因此,一个简单的解决方案就是刷新它们。

if not creds or not creds.valid:
    if creds and creds.expired and creds.refresh_token:
        creds.refresh(Request())

我的母语是 python,所以我用相同的语言编写了代码,但是你可以到这里看看你的母语中类似的东西

谢谢你。

于 2020-07-04T14:45:13.877 回答
0

我也突然看到了这个。几个月来一切都运行良好,代码没有任何变化。还看到令牌正在刷新。

-rw-r--r-- 1 kosalanbalarajah 员工 728 Jul 6 12:50 token.pickle

但是错误没有得到解决。

从一开始也有刷新代码。

如果没有(有效)凭据可用,则让用户登录。

    # If token.pickle does not exist there are no valid token, let user log in again to generate token and save the token for furture use.
    if not creds or not creds.valid:
        if creds and creds.expired and creds.refresh_token:
            creds.refresh(Request())
        else:
            flow = InstalledAppFlow.from_client_secrets_file(credentialspath, self.SCOPES) # Change credentials.json to credentialspath
            creds = flow.run_local_server(port=0)
        # Save the credentials for the next run
        with open(tokenpath, 'wb') as token: # Change token.pickle to tokenpath
            pickle.dump(creds, token)

    return creds
于 2020-07-06T16:56:57.593 回答