gpt4 book ai didi

使用 gmail API 的 Linux 命令

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:47:23 25 4
gpt4 key购买 nike

我正在尝试使用#gmail-api 来检索我的个人资料中的信息:获取 https://www.googleapis.com/gmail/v1/users/userID/profile但是当我运行它时,我得到:

{
"error": {
"errors": [
{
"domain": "global",
"reason": "required",
"message": "Login Required",
"locationType": "header",
"location": "Authorization"
}
],
"code": 401,
"message": "Login Required"
}
}

任何帮助将不胜感激!谢谢!

最佳答案

需要登录意味着您必须登录才能进行该调用。为了访问私有(private)数据,您必须首先有权访问所述数据。对于 Gmail api,您需要使用 Oauth2。

虽然您可以使用 http get 来调用 Users: getProfile

https://www.googleapis.com/gmail/v1/users/userID/profile

您必须将来自 Oauth 身份验证流程的访问 token 附加到它的末尾。

https://www.googleapis.com/gmail/v1/users/userID/profile?access_token=MyToken

首先获取访问 token 将需要 http posts 和 http gets。可以找到文档 here

关于使用 gmail API 的 Linux 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35573877/

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