编程语言
首页 > 编程语言> > python – 没有足够的权限通过Gmail API删除邮件

python – 没有足够的权限通过Gmail API删除邮件

作者:互联网

我的代码应该在我的收件箱中收到一条消息,检查它是否有链接,然后从电子邮件中提取链接然后将其删除.

message = gmail_service.users().messages().get(userId='me', id=thread['id'], format='raw').execute()    #get message using thread id
msg_str = base64.urlsafe_b64decode(message['raw'].encode('ASCII'))
msg = email.message_from_string(msg_str)
for part in msg.walk():
    msg.get_payload()
    if part.get_content_type() == 'text/html':
        mytext = base64.urlsafe_b64decode(part.get_payload().encode('UTF-8'))
        html = BeautifulSoup(mytext)
        for link in html.find_all('a'):
            mylink = link.get('href')
            print mylink
            try:
                service.users().messages().trash(userId='me', id=thread['id']).execute()
                print 'Message with id: %s trashed successfully.' % msg_id
            except errors.HttpError, error:
                print 'Could not trash ' + thread['id'] + ': %s' % error

我在我的代码中定义的范围是.modify,它应该为我提供删除消息without fail所需的权限.为什么我收到错误:

<HttpError 403 when requesting https://www.googleapis.com/gmail/v1/users/me/messages/147d8c9a6348e437/trash?alt=json returned "Insufficient Permission">

编辑:即使documented example返回403禁止错误,这必须是Gmail API本身的错误.

解决方法:

在过去的某个时刻,您在同一目录中注册了readonly作用域,并将其缓存在名为gmail.storage的文件中.

将该文件移开并再次运行程序,它应该可以工作.

标签:python,debugging,google-oauth,gmail-api
来源: https://codeday.me/bug/20190612/1224757.html