gpt4 book ai didi

python - Gmail api 线程列表片段

转载 作者:太空狗 更新时间:2023-10-30 01:22:17 25 4
gpt4 key购买 nike

我一直在尝试使用 GMail API 和客户端库。我能够使用 javascript 节点 SDK 获取线程列表,但该片段返回为“”。

client.gmail.users.threads.list({userId: "me"}).withAuthClient(auth_with_access_token).execute(function (err, response) {
res.json({complete: response.threads})
});

然后我下载了 python SDK 并使用 gmail api 示例获得了线程列表,并注意到它们也有空片段。

for thread in threads['threads']:
print 'Thread: %s' % (thread)

Thread ID: {u'snippet': u'', u'id': u'146fccb21d960498', u'historyId': u'7177452'}

当我通过 get thread 方法请求线程时,我确实得到了一个片段,但它只是在线程列表中丢失了。

获取代码段的请求中是否需要包含其他详细信息?

谢谢!

最佳答案

通过身份验证,我可以使用此代码抓取消息片段:

message = service.users().messages().get(userId=user_id, id=msg_id, format='raw').execute()
print 'Message snippet: %s' % message['snippet']

这显然是为特定消息提取了一个片段,但原理仍然存在。

试试这个,它应该可以工作,如果不评论这个答案,我会尽力提供帮助。

关于python - Gmail api 线程列表片段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24577265/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com