Google API的403错误

Google API的403错误

问题描述:

我使用的是OAuth2.0的Google API,但有些还行,有些错误。Google API的403错误

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> 

这是为什么?

+3

这只是一个区ess,但我怀疑你可能没有被授权访问该API ... –

两个可能的原因: -

  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

+0

谢谢,Burhan Khalid.but我使用API​​没有OAuth2.0,没关系!我无法理解。 – user1615716