谷歌API的403

2024-10-05 10:23:08 发布

您现在位置:Python中文网/ 问答频道 /正文

我使用的是OAuth2.0的googleapi,但是有些是可以的,有些是错误的。在

Server responded with: 403, <HTML>
<HEAD>
<TITLE>You are not authorized to access this API</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>You are not authorized to access this API</H1>
<H2>Error 403</H2>
</BODY>
</HTML>

这就是为什么?在


Tags: toyouapiaccesstitlehtmlnotbody
1条回答
网友
1楼 · 发布于 2024-10-05 10:23:08

两种可能原因:在

  1. 当我尝试使用未注册或超出每日限制的身份验证密钥进行访问时,我收到错误:

    {
            "error": {
              "errors": [
               {
                "domain": "usageLimits",
                "reason": "dailyLimitExceededUnreg",
                "message": "Daily Limit Exceeded. Please sign up",
                "extendedHelp": "https://code.google.com/apis/console"
               }
              ],
              "code": 403,
              "message": "Daily Limit Exceeded. Please sign up"
            }
            }
  2. http://www.google.com/support/enterprise/static/gapps/docs/admin/en/gads/admin/troubleshooting_common.html

相关问题 更多 >

    热门问题