Android google 个地方 API 超出每日配额

Android google places API exceeded daily quota

我正在创建 android 应用程序,我必须实现地图和地点,因此,我创建了新的 google 地点 API 并且当我使用 volley 发送请求以从纬度和经度我收到错误消息

{"error_message":"You have exceeded your daily request quota for this API.","html_attributions":[],"results":[],"status":"OVER_QUERY_LIMIT"}

但是它在 postman 上工作正常,我该如何解决这个问题?

P.S。我是初学者,所以如果我的过程中有任何错误,请指正我。 谢谢。

为 Android 开发时,Google 建议使用 Android 的 Places SDK(https://developers.google.com/places/android-sdk/intro) instead of the Places API (https://developers.google.com/places/web-service/intro) because it is free and has generous usage limits. See https://developers.google.com/places/android-sdk/usage

我认为 Google 的服务条款限制从客户端应用程序(即您的 android 应用程序)使用 Place API。我也在其他问题的评论中看到了这一点。 (正如 Troy Perales 也提到的那样)

有关实施 Google API 的教程或示例,请单击 herehere。这些是关于实现 Google Places API.enter code here 的 Codelabs 示例 这是 Places Docs

希望对您有所帮助。