Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Google 的博客 API 自动发布博客条目。限制是 50,但是当超过限制时它只会抛出错误。
有没有办法从 50 中检索使用情况,以便我可以在进程失败之前停止进程?
一种方法是创建一个变量,然后在每个请求中简单地增加它。代码将是这样的:
if (numberOfSentRequests<=50) { sendBloggerRequest(); }
您也可以使用 try/catch 块。我认为 Blogger API 不会有跟踪请求数量的功能。