- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Gmail API,并尝试使用 Python 3.9 设置推送通知。当我尝试在 Gmail 收件箱上调用 watch() 时,出现错误,即使我已遵循针对类似问题给出的所有建议。错误如下:
“向 Cloud PubSub 项目/[project-id]/topics/[topic-id] 发送测试消息时出错:用户无权执行此操作。”
到目前为止,我已经完成了以下工作:
就代码而言,我只是添加到 Google 提供的 Python Quickstart 文件 ( https://developers.google.com/gmail/api/quickstart/python ) 中。这是我添加的内容:
from __future__ import print_function
import os.path
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
from google.oauth2.credentials import Credentials
# If modifying these scopes, delete the file token.json.
SCOPES = ['https://www.googleapis.com/auth/gmail.readonly']
def main():
"""Shows basic usage of the Gmail API.
Lists the user's Gmail labels.
"""
creds = None
# The file token.json stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
if os.path.exists('token.json'):
creds = Credentials.from_authorized_user_file('token.json', SCOPES)
# If there are no (valid) credentials available, let the user log in.
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(
'credentials.json', SCOPES)
creds = flow.run_local_server(port=0)
# Save the credentials for the next run
with open('token.json', 'w') as token:
token.write(creds.to_json())
#NEW CODE I ADDED FOR watch()
service = build('gmail', 'v1', credentials=creds)
request = {
'labelIds': ['INBOX'],
'topicName': 'projects/[project-id]/topics/[topic-id]'
}
service.users().watch(userId='me', body=request).execute()
if __name__ == '__main__':
main()
编辑:
编辑2:我使用上面的凭据添加了完整文件。
最佳答案
我已经测试了您的代码,并且遇到了同样的问题,但这是因为我故意跳过了一些步骤来弄清楚某些阶段会发生什么。
当我没有添加服务帐户时,我遇到了您的具体问题 <a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="77101a161e1b5a16071e5a0702041f37040e0403121a5910041205011e1412161414180219035914181a" rel="noreferrer noopener nofollow">[email protected]</a>
作为相关主题的发布者。
所以问题是,您正在尝试使用服务帐户来验证 @gmail.com 帐户的 Gmail API 的 API 调用,我猜测遵循 this example .
唯一可行的方法是,如果您使用的帐户是 GSuite 帐户并且您正在使用域范围委派。 This doc (对于 Admin SDK,但其工作方式是相同的)解释了其工作原理。它不适用于您,但为了完整起见,我添加了此内容。
服务帐户不能用于验证 @gmail.com 帐户的请求。
它们可以用于验证自己的 GSuite 相关 API,例如 GDrive、GDocs 等,但它们基本上用于验证自己的帐户,而不是 @gmail.com 帐户。我不会详细介绍这一点,因为这并不完全相关,而且这是一个有点奇怪的兔子洞,即使爱丽丝也无法摆脱。
要将 Gmail API 与您的 @gmail.com 帐户结合使用,您需要按照快速入门 you linked 中的说明创建 creds 对象。所以请求得到 authenticated using the credentials for your @gmail.com account 。您只需执行一次此操作,并将生成的 JSON 凭证文件保存在某处,以便您可以重复使用它。它将一直有效,直到您撤销它为止。
请注意the docs还声明您需要使用标准 Gmail API 身份验证。
下面的部分创建 JSON 文件,您可以使用该文件通过登录时使用的 @gmail.com 帐户对 Gmail API 的请求进行身份验证。
# Save the credentials for the next run
with open('token.json', 'w') as token:
token.write(creds.to_json())
您可以使用这部分将凭据加载到 creds 对象中,然后只需使用您已有的代码就可以了...
if os.path.exists('token.json'):
creds = Credentials.from_authorized_user_file('token.json', SCOPES)
我不能 100% 确定您是否需要授予 GCloud 项目本身的权限,但您可以通过完成快速入门的其余部分来测试 Gmail 信用对象是否有效,并查看是否可以获得该项目的标签。 @gmail.com 帐户。如果此方法有效,但您仍然收到 403 错误,请尝试向 @gmail.com 帐户授予您向服务帐户授予的 Pub/Sub IAM 权限。
关于python - GmailAPI : "Error sending test message to Cloud PubSub projects/[project-id]/topics/[topic-id] : User not authorized to perform this action."?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68091042/
我尝试将 python 2.x 代码移植到 python 3。我正在努力解决的问题是 from mimetools import Message ... headers = Message(Strin
我有一个输入组件,它有三种类型的验证(required、validatorMessage、converterMessage),这个输入有自己的消息图标,整个表单有一个消息组件来显示所有组件的所有消息,
我有一个使用消息代理 (activemq) 的带有 spring 和 websockets 的 webapp。 这是我的配置类: @Configuration @EnableWebSocketMess
据我了解mbox Python 3.6 标准库中的类生成 email.message.Message 类型的旧式消息对象. 较新的类(class) email.message.EmailMessage
我使用的是mysql。 我有一个包含 userid、message_id、opened(true 或 false)、时间戳的消息表。 我希望所有未打开最近收到的 5 条消息的用户 这就是我现在拥有的:
我是 Android 的新手,发现要不断更新主视图,我必须创建一个线程来处理各种进程,然后将更新传回主视图。我决定使用 Handler 类来执行此操作。此示例中的 View 有一个用于激活代码的按钮和
我遇到了重定向符号的不同位置( > , &2 message message echo message >&2 message >&2 echo message message 对于所有表单,我得到了
我想使用 firebase 云函数发送通知,所以我尝试使用 firebase.messaging().getToken() 获取 token ,但我不断收到错误消息: TypeError: fireb
我实现了一个短信应用。现在我在使用 Oppo 设备时遇到了问题,因为无论何时收到消息,系统都会将默认应用程序更改为内置应用程序并显示此消息: For your messages security, S
我正在实现本指南:https://spring.io/guides/gs/centralized-configuration/关于Spring Cloud配置。 服务器: @EnableConfigS
我想在“匹配”之后,向所有比赛发送介绍信息。你知道一种轻松发送的方法吗?(我使用 Bluestacks) 提前致谢。问候。 最佳答案 只需传递 session.send()在session.dialo
在我们的应用程序中,我们使用 kafka 并有一个像这样的 Spring Cloud 输入流 @Component public interface SomeChannel { @Input(
这周我在通过 Node.js 库(代码相同,库版本相同等)向我的 iOS 设备发送消息时遇到了很多内部错误 很难调试,因为有时它会起作用。当我使用 for 循环发送 10 条消息时,我的设备将收到 3
我目前正在记录错误并希望获得尽可能多的描述性细节。我知道我可以捕获许多不同类型的异常,但 Exception.Message 之间有什么区别?和 Exception.InnerException.Me
我创建了一个映射到 MyBean.beansField 的表单。我使用 javax.validation.NotNull 注释来确保必须输入它。到目前为止一切正常,但错误消息如下所示: beansFi
我正在研究 Azure 服务总线。我的服务总线队列正在处理一条消息 3 次。我的消息锁定时间是5分钟。每条消息最多处理 2 分钟,但我不知道为什么队列会选择相同的消息并发送到处理,而重复的消息仅在 5
我正在使用最新的快速修复版本,即 1.6.0。我已经有针对 1.5.3 编写的代码,我想做的是将其升级到 1.6.0 我遇到的问题是,当我使用破解(msg,sessionID)方法时,它会抛出quic
当我调用 grails message()函数来查找和评估消息 key 对,它无法评估参数。 在我的 Controller 中,我调用消息函数: rejectWithError(message(cod
我使用一个小型 Spring 应用程序,其中数据库中的值很少,我想使用可变调用来检索它们。 API 在这里, @RestController @RequestMapping("/api/v1/prod
我在想在用以更好的方式,像这样: Please inform us about: 这个想法是以一种不同的方式向用户展示消息,具有更多的风格。这可能吗? 最佳答案 它们可通过 Fac
我是一名优秀的程序员,十分优秀!