为什么在浏览器中有效的 Web 请求会从 Android 返回 404 错误?

发布于 2024-11-29 08:50:38 字数 485 浏览 1 评论 0原文

我正在编写一个应用程序来查询 Google 购物 api。使用下面的请求和有效的 api 密钥会返回我在浏览器中预期的结果,但不会从 Android 设备返回结果。为什么在通过 HttpClient 发送请求时会收到 404 未找到错误,但浏览器中的相同 url 却可以正常工作?

API 调用:

http://www.googleapis.com/shopping/search/v1/public/products?restrictBy=gtin%3A010343876415&key=API_KEY&country=US&alt=json

谢谢

I am writing an app to query the Google shopping api. Using the request below with a valid api key returns me the results I'm expecting in a browser but not from an Android device. Why would I get a 404 not found error when sending the request through the HttpClient but the same url in a browser works?

API Call:

http://www.googleapis.com/shopping/search/v1/public/products?restrictBy=gtin%3A010343876415&key=API_KEY&country=US&alt=json

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜爱皱眉﹌ 2024-12-06 08:50:38

正如我的评论中所描述的。

该 API 的文档位于 code.google.com/apis/shopping/search/v1/getting_started.html。我通过将请求类型切换为 HttpGet 而不是 HttpPost 来使其工作。仍然不确定为什么这会导致 404 错误再次出现。

As described in my comment.

The documentation for the api is at code.google.com/apis/shopping/search/v1/getting_started.html. I got it to work by switching the request type to a HttpGet instead of HttpPost. Still not sure why this would make a 404 error come back.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文