我今天已经注册了Google开发者控制台。我在这个控制台中创建了一个项目。之后我为Google Translate API启用了API。得到了谷歌的钥匙。 现在我正在尝试测试下面链接中给出的简单程序。我已用实际密钥替换了该程序中的虚拟密钥。
我从Google API服务获得以下错误。这可能会出错?
// API callback
translateText({
"error": {
"errors": [
{
"domain": "usageLimits",
"reason": "dailyLimitExceeded",
"message": "Daily Limit Exceeded"
}
],
"code": 403,
"message": "Daily Limit Exceeded"
}
}
);
答案 0 :(得分:0)
我认为错误说明了一切:您已经超出了对API调用的每日限制。 您必须启用结算:https://cloud.google.com/translate/v2/getting_started#setup